mirror of
https://github.com/postgres/postgres.git
synced 2026-04-15 22:10:45 -04:00
Fix incorrect format placeholder.
Per buildfarm warnings.
This commit is contained in:
parent
160c025880
commit
b0cf5444f9
1 changed files with 1 additions and 1 deletions
|
|
@ -476,7 +476,7 @@ FindStreamingStart(uint32 *tli)
|
||||||
|
|
||||||
if (uncompressed_size != WalSegSz)
|
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);
|
dirent->d_name, uncompressed_size);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue