Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 0bd65a3

Browse files
committed
Fix format modifier used in elog.
The previous commit 6501400 changed the variable passed to elog from an int64 to a size_t variable, but neglected to change the modifier in the format string accordingly. Per failure on buildfarm member lapwing.
1 parent 6501400 commit 0bd65a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/utils/sort/tuplesort.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -2911,7 +2911,7 @@ mergeruns(Tuplesortstate *state)
29112911
USEMEM(state, state->availMem);
29122912
#ifdef TRACE_SORT
29132913
if (trace_sort)
2914-
elog(LOG, "worker %d using " INT64_FORMAT " KB of memory for tape buffers",
2914+
elog(LOG, "worker %d using %zu KB of memory for tape buffers",
29152915
state->worker, state->tape_buffer_mem / 1024);
29162916
#endif
29172917

0 commit comments

Comments
 (0)