]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Minor fix
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Mon, 16 Nov 2015 21:25:11 +0000 (16:25 -0500)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Mon, 16 Nov 2015 21:25:18 +0000 (16:25 -0500)
src/include/missing-h
src/lib/missing.c

index 650d27783fe8e7d33b0f750c07f4b0b561c44d5a..9d59394e4e38668881bfd8650184996d8c6eafc1 100644 (file)
@@ -352,7 +352,7 @@ struct tm *gmtime_r(time_t const *l_clock, struct tm *result);
 #endif
 
 #ifndef HAVE_VDPRINTF
-int vdprintf (int fd, const char format, va_list args);
+int vdprintf (int fd, char const *format, va_list args);
 #endif
 
 #ifndef HAVE_GETTIMEOFDAY
index fd3e636e3835106c434d7e121ad5ebf34fc17c36..1d73c76090add10696895092f4742edd2dc09b40 100644 (file)
@@ -192,7 +192,7 @@ struct tm *gmtime_r(time_t const *l_clock, struct tm *result)
 #endif
 
 #ifndef HAVE_VDPRINTF
-int vdprintf (int fd, const char *format, va_list args)
+int vdprintf (int fd, char const *format, va_list args)
 {
        int     ret;
        FILE    *fp;