mirror of
https://github.com/postgres/postgres.git
synced 2025-07-02 09:02:37 +03:00
Replace printf format %i by %d
They are identical, but the overwhelming majority of the code uses %d, so standardize on that.
This commit is contained in:
@ -2355,7 +2355,7 @@ keep_going: /* We will come back to here until there is
|
||||
if (!conn->ginbuf.value)
|
||||
{
|
||||
printfPQExpBuffer(&conn->errorMessage,
|
||||
libpq_gettext("out of memory allocating GSSAPI buffer (%i)"),
|
||||
libpq_gettext("out of memory allocating GSSAPI buffer (%d)"),
|
||||
llen);
|
||||
goto error_return;
|
||||
}
|
||||
|
Reference in New Issue
Block a user