From: Theodore Tso Date: Fri, 24 Dec 1993 22:43:26 +0000 (+0000) Subject: Make vfprintf() and vsprintf() match the standard function prototypes X-Git-Tag: krb5-1.0-beta3~71 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=da2c69cca28334b25cfd3962de75b7822573c8a1;p=krb5.git Make vfprintf() and vsprintf() match the standard function prototypes git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@3277 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/lib/krb5/posix/vfprintf.c b/src/lib/krb5/posix/vfprintf.c index 94f0fb582..24a379f54 100644 --- a/src/lib/krb5/posix/vfprintf.c +++ b/src/lib/krb5/posix/vfprintf.c @@ -25,7 +25,7 @@ static char sccsid[] = "@(#)vfprintf.c 5.2 (Berkeley) 6/27/88"; int vfprintf(iop, fmt, ap) FILE *iop; - char *fmt; + const char *fmt; va_list ap; { int len; diff --git a/src/lib/krb5/posix/vsprintf.c b/src/lib/krb5/posix/vsprintf.c index 7f43f9066..7fe679fb3 100644 --- a/src/lib/krb5/posix/vsprintf.c +++ b/src/lib/krb5/posix/vsprintf.c @@ -24,7 +24,8 @@ static char sccsid[] = "@(#)vsprintf.c 5.2 (Berkeley) 6/27/88"; int vsprintf(str, fmt, ap) - char *str, *fmt; + char *str; + const char *fmt; va_list ap; { FILE f;