diff options
Diffstat (limited to 'src/common/log.c')
-rw-r--r-- | src/common/log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/log.c b/src/common/log.c index 018028de3..303995120 100644 --- a/src/common/log.c +++ b/src/common/log.c @@ -62,7 +62,7 @@ void log(int severity, const char *format, ...) { t = time(NULL); strftime(buf, 200, "%b %d %H:%M:%S", localtime(&t)); - printf("%s.%.3ld ", buf, now.tv_usec / 1000); + printf("%s.%.3ld ", buf, (long)now.tv_usec / 1000); sev_to_string(buf, 200, severity); printf("[%s] ", buf); vprintf(format,ap); |