diff options
author | David Rowley <drowley@postgresql.org> | 2025-08-15 18:07:22 +1200 |
---|---|---|
committer | David Rowley <drowley@postgresql.org> | 2025-08-15 18:07:22 +1200 |
commit | 199a347d29e5706498cd982c8df3da1c3f9374ec (patch) | |
tree | 45d25344ca563602f9a519f2331b9c84694c57ca | |
parent | b3aa95b61e90e3871f17a9aa134192a9ea3951ce (diff) |
Fix invalid format string in HASH_DEBUG code
This seems to have been broken back in be0a66666.
Reported-by: Hayato Kuroda (Fujitsu) <kuroda.hayato@fujitsu.com>
Author: David Rowley <dgrowleyml@gmail.com>
Discussion: https://postgr.es/m/OSCPR01MB14966E11EEFB37D7857FCEDB7F535A@OSCPR01MB14966.jpnprd01.prod.outlook.com
Backpatch-through: 14
-rw-r--r-- | src/backend/utils/hash/dynahash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/hash/dynahash.c b/src/backend/utils/hash/dynahash.c index 3babde8d704..e62a59ad076 100644 --- a/src/backend/utils/hash/dynahash.c +++ b/src/backend/utils/hash/dynahash.c @@ -756,7 +756,7 @@ init_htab(HTAB *hashp, long nelem) hctl->nelem_alloc = choose_nelem_alloc(hctl->entrysize); #ifdef HASH_DEBUG - fprintf(stderr, "init_htab:\n%s%p\n%s%ld\n%s%ld\n%s%d\n%s%ld\n%s%u\n%s%x\n%s%x\n%s%ld\n", + fprintf(stderr, "init_htab:\n%s%p\n%s%ld\n%s%ld\n%s%d\n%s%u\n%s%x\n%s%x\n%s%ld\n", "TABLE POINTER ", hashp, "DIRECTORY SIZE ", hctl->dsize, "SEGMENT SIZE ", hctl->ssize, |