summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2021-11-08 14:32:29 -0500
committerTom Lane <tgl@sss.pgh.pa.us>2021-11-08 14:32:29 -0500
commitb0cf5444f9a8d915b2e9b44790025f17a7dc107f (patch)
treea818f5f84d54baaba7a59b769a80656b9ba38ffc
parent160c0258802d10b0600d7671b1bbea55d8e17d45 (diff)
Fix incorrect format placeholder.
Per buildfarm warnings.
-rw-r--r--src/bin/pg_basebackup/pg_receivewal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_basebackup/pg_receivewal.c b/src/bin/pg_basebackup/pg_receivewal.c
index 89810244ceb..23cf5f8ec74 100644
--- a/src/bin/pg_basebackup/pg_receivewal.c
+++ b/src/bin/pg_basebackup/pg_receivewal.c
@@ -476,7 +476,7 @@ FindStreamingStart(uint32 *tli)
if (uncompressed_size != WalSegSz)
{
- pg_log_warning("compressed segment file \"%s\" has incorrect uncompressed size %ld, skipping",
+ pg_log_warning("compressed segment file \"%s\" has incorrect uncompressed size %zu, skipping",
dirent->d_name, uncompressed_size);
continue;
}