Print isc_stdtime_t with PRIu32

(cherry picked from commit c355e1f38f)
This commit is contained in:
Ondřej Surý
2018-11-09 02:56:48 +07:00
parent 7b083a4958
commit 15a4f74b28
+2 -2
View File
@@ -165,8 +165,8 @@ verbose_time(int level, const char *msg, isc_stdtime_t time) {
if (verbose < 3) {
vbprintf(level, "%s %s\n", msg, timestr);
} else {
vbprintf(level, "%s %s (%lld)\n",
msg, timestr, (long long)time);
vbprintf(level, "%s %s (%" PRIu32 ")\n",
msg, timestr, time);
}
}