mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
@ -531,7 +531,7 @@ make_temptable_name_n(char *tempname, int n)
|
||||
|
||||
initStringInfo(&namebuf);
|
||||
appendStringInfoString(&namebuf, tempname);
|
||||
appendStringInfo(&namebuf, "_%i", n);
|
||||
appendStringInfo(&namebuf, "_%d", n);
|
||||
return namebuf.data;
|
||||
}
|
||||
|
||||
|
@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user