* diagnostic.c (v_message_with_decl): Use .* format specifier
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 27 Dec 1999 16:52:03 +0000 (16:52 +0000)
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 27 Dec 1999 16:52:03 +0000 (16:52 +0000)
       instead of building the format specifier width manually.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31101 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/diagnostic.c

index 35ee30d..676a525 100644 (file)
@@ -1,5 +1,8 @@
 1999-12-27  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
 
+       * diagnostic.c (v_message_with_decl): Use .* format specifier
+       instead of building the format specifier width manually.
+
        * system.h (strsignal): Don't check HAVE_STRSIGNAL when
        determining whether to provide a prototype.  Remove the
        sys_siglist clause in the conditional.
index 8572913..1365e71 100644 (file)
@@ -198,14 +198,7 @@ v_message_with_decl (decl, warn, msgid, ap)
     }
 
   if (p > _(msgid))                    /* Print the left-hand substring.  */
-    {
-      char fmt[sizeof "%.255s"];
-      long width = p - _(msgid);
-             
-      if (width > 255L) width = 255L;  /* arbitrary */
-      sprintf (fmt, "%%.%lds", width);
-      fprintf (stderr, fmt, _(msgid));
-    }
+    fprintf (stderr, "%.*s", (int)(p - _(msgid)), _(msgid));
 
   if (*p == '%')               /* Print the name.  */
     {