summaryrefslogtreecommitdiff
path: root/src/interfaces/libpq/fe-connect.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2011-07-26 22:54:29 +0300
committerPeter Eisentraut <peter_e@gmx.net>2011-07-26 22:54:29 +0300
commitce8d7bb6440710058503d213b2aafcdf56a5b481 (patch)
tree89f98db82e38e58891211ec7d818fd158aab9f8e /src/interfaces/libpq/fe-connect.c
parent8c18f3f0e15738633231b31d8937b2710b38975f (diff)
Replace printf format %i by %d
They are identical, but the overwhelming majority of the code uses %d, so standardize on that.
Diffstat (limited to 'src/interfaces/libpq/fe-connect.c')
-rw-r--r--src/interfaces/libpq/fe-connect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/libpq/fe-connect.c b/src/interfaces/libpq/fe-connect.c
index 9e4807e8a96..35235821453 100644
--- a/src/interfaces/libpq/fe-connect.c
+++ b/src/interfaces/libpq/fe-connect.c
@@ -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;
}