diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2011-07-26 22:54:29 +0300 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2011-07-26 22:54:29 +0300 |
commit | ce8d7bb6440710058503d213b2aafcdf56a5b481 (patch) | |
tree | 89f98db82e38e58891211ec7d818fd158aab9f8e /src/bin/psql/command.c | |
parent | 8c18f3f0e15738633231b31d8937b2710b38975f (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/bin/psql/command.c')
-rw-r--r-- | src/bin/psql/command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c index aeabe5bf3c3..7d2490ab8ab 100644 --- a/src/bin/psql/command.c +++ b/src/bin/psql/command.c @@ -1663,7 +1663,7 @@ printSSLInfo(void) return; /* no SSL */ SSL_get_cipher_bits(ssl, &sslbits); - printf(_("SSL connection (cipher: %s, bits: %i)\n"), + printf(_("SSL connection (cipher: %s, bits: %d)\n"), SSL_get_cipher(ssl), sslbits); #else |