From: Mark Andrews Date: Fri, 25 Oct 2013 01:53:24 +0000 (+1100) Subject: %ld.%06g -> %ld.%06d X-Git-Tag: v9.10.0a1~49 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7f0e47b3c2e4888ac106c78b0d9d7b4b6bab92bd;p=thirdparty%2Fbind9.git %ld.%06g -> %ld.%06d --- diff --git a/bin/dig/dighost.c b/bin/dig/dighost.c index 41a4c7ffae0..4b87a972776 100644 --- a/bin/dig/dighost.c +++ b/bin/dig/dighost.c @@ -543,7 +543,7 @@ debug(const char *format, ...) { if (debugtiming) { struct timeval tv; (void)gettimeofday(&tv, NULL); - fprintf(stderr, "%ld.%06u: ", (long)tv.tv_sec, + fprintf(stderr, "%ld.%06d: ", (long)tv.tv_sec, tv.tv_usec); } va_start(args, format);