mirror of
https://github.com/postgres/postgres.git
synced 2026-05-27 20:27:28 -04:00
Don't use INT64_FORMAT in translatable string
Use PRId64 instead.
This commit is contained in:
parent
f64f62f5be
commit
7d7e58feef
1 changed files with 1 additions and 1 deletions
|
|
@ -281,7 +281,7 @@ test_timing(unsigned int duration, TimingClockSourceType source, bool fast_timin
|
|||
if (unlikely(diff < 0))
|
||||
{
|
||||
fprintf(stderr, _("Detected clock going backwards in time.\n"));
|
||||
fprintf(stderr, _("Time warp: " INT64_FORMAT " ns\n"), diff);
|
||||
fprintf(stderr, _("Time warp: %" PRId64 " ns\n"), diff);
|
||||
exit(1);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue