We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e8a58c commit cd081f3Copy full SHA for cd081f3
timeutil.c
@@ -51,6 +51,6 @@ void printTimeString()
51
abort();
52
}
53
54
- snprintf(&buffer[charsWritten], 8, ".%06ld", (long)tv.tv_usec);
+ snprintf(&buffer[charsWritten], 8, ".%06lu", (unsigned long)tv.tv_usec);
55
printf("%s", buffer);
56
0 commit comments