Skip to content

Commit 14d09bb

Browse files
committed
fix a typo in variable name
1 parent 1222a70 commit 14d09bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/parsexlog.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,8 @@ switchToNextWal(XLogReaderState *xlogreader, xlog_thread_arg *arg)
176176
}
177177
arg->startpoint = found;
178178

179-
elog(VERBOSE, "Thread %d switched to LSN %X/%X",
180-
arg->thread_num,
179+
elog(VERBOSE, "Thread [%d]: switched to LSN %X/%X",
180+
private_data->thread_num,
181181
(uint32) (arg->startpoint >> 32), (uint32) (arg->startpoint));
182182

183183
return true;

0 commit comments

Comments
 (0)