From ce8d7bb6440710058503d213b2aafcdf56a5b481 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Tue, 26 Jul 2011 22:54:29 +0300 Subject: Replace printf format %i by %d They are identical, but the overwhelming majority of the code uses %d, so standardize on that. --- src/interfaces/libpq/fe-connect.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/interfaces/libpq/fe-connect.c') 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; } -- cgit v1.2.3