1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-20 10:51:48 +02:00

(wrapf): Declare first argument const char *.

This commit is contained in:
Jim Meyering
1994-09-24 16:17:35 +00:00
parent 553cabb1d1
commit d26f6b1796

View File

@@ -424,10 +424,10 @@ char *program_name;
/* VARARGS */
static void
#ifdef __STDC__
wrapf (char *message,...)
wrapf (const char *message,...)
#else
wrapf (message, va_alist)
char *message;
const char *message;
va_dcl
#endif
{