mirror of
https://github.com/postgres/postgres.git
synced 2025-06-16 06:01:02 +03:00
Fix incorrect format placeholders
This commit is contained in:
@ -511,7 +511,7 @@ read_bytes(rfile *rf, void *buffer, unsigned length)
|
||||
if (rb < 0)
|
||||
pg_fatal("could not read file \"%s\": %m", rf->filename);
|
||||
else
|
||||
pg_fatal("could not read file \"%s\": read only %d of %d bytes",
|
||||
pg_fatal("could not read file \"%s\": read only %d of %u bytes",
|
||||
rf->filename, rb, length);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user