mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 07:02:04 -04:00
%ld.%06g -> %ld.%06d
This commit is contained in:
parent
ecc420b283
commit
7f0e47b3c2
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue