1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-18 17:42:25 +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

@ -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;
}