From: Arran Cudbard-Bell Date: Mon, 16 Nov 2015 21:25:11 +0000 (-0500) Subject: Minor fix X-Git-Tag: release_3_0_11~156 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=46fb0cd312f060f96b33a46e598b6c3ff5ad0d51;p=thirdparty%2Ffreeradius-server.git Minor fix --- diff --git a/src/include/missing-h b/src/include/missing-h index 650d27783fe..9d59394e4e3 100644 --- a/src/include/missing-h +++ b/src/include/missing-h @@ -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 diff --git a/src/lib/missing.c b/src/lib/missing.c index fd3e636e383..1d73c76090a 100644 --- a/src/lib/missing.c +++ b/src/lib/missing.c @@ -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;