diagnostic.c (v_message_with_decl): Use .* format specifier instead of building the format specifier width manually.

* diagnostic.c (v_message_with_decl): Use .* format specifier
       instead of building the format specifier width manually.

From-SVN: r31101
This commit is contained in:
Kaveh R. Ghazi 1999-12-27 16:52:03 +00:00 committed by Kaveh Ghazi
parent 759af044d4
commit cfa9f25220
2 changed files with 4 additions and 8 deletions

View 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.

View 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. */
{