1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-30 21:42:05 +03:00

Replace printf format %i by %d

see also ce8d7bb644
This commit is contained in:
Peter Eisentraut
2016-04-08 12:40:15 -04:00
parent 01a07e6c11
commit 339025c68f
3 changed files with 4 additions and 4 deletions

View File

@ -112,7 +112,7 @@ isolation_init(int argc, char **argv)
argv0_len = strlcpy(saved_argv0, argv[0], MAXPGPATH);
if (argv0_len >= MAXPGPATH)
{
fprintf(stderr, _("path for isolationtester executable is longer than %i bytes\n"),
fprintf(stderr, _("path for isolationtester executable is longer than %d bytes\n"),
(int) (MAXPGPATH - 1));
exit(2);
}