1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-22 12:22:45 +03:00

Fix incorrect format placeholders

This commit is contained in:
Peter Eisentraut
2021-09-08 08:52:29 +02:00
parent 8bd5342740
commit bb1412baa5
3 changed files with 4 additions and 4 deletions

View File

@@ -1002,8 +1002,8 @@ pg_GSS_recvauth(Port *port)
/* gbuf no longer used */
pfree(buf.data);
elog(DEBUG5, "gss_accept_sec_context major: %d, "
"minor: %d, outlen: %u, outflags: %x",
elog(DEBUG5, "gss_accept_sec_context major: %u, "
"minor: %u, outlen: %u, outflags: %x",
maj_stat, min_stat,
(unsigned int) port->gss->outbuf.length, gflags);