mirror of
https://github.com/postgres/postgres.git
synced 2025-07-05 07:21:24 +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:
@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user