Fix incorrect format placeholders

pull/159/head
Peter Eisentraut 1 year ago
parent a189ed49d6
commit 6612185883
  1. 4
      src/bin/pg_combinebackup/pg_combinebackup.c
  2. 2
      src/bin/pg_combinebackup/reconstruct.c

@ -1277,8 +1277,8 @@ slurp_file(int fd, char *filename, StringInfo buf, int maxlen)
if (rb < 0)
pg_fatal("could not read file \"%s\": %m", filename);
else
pg_fatal("could not read file \"%s\": read only %d of %d bytes",
filename, (int) rb, (int) st.st_size);
pg_fatal("could not read file \"%s\": read only %zd of %lld bytes",
filename, rb, (long long int) st.st_size);
}
/* Adjust buffer length for new data and restore trailing-\0 invariant */

@ -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);
}
}

Loading…
Cancel
Save