We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dffc82a commit eec90ffCopy full SHA for eec90ff
src/bin/pg_checksums/pg_checksums.c
@@ -635,7 +635,7 @@ main(int argc, char *argv[])
635
if (mode == PG_MODE_CHECK)
636
{
637
printf(_("Bad checksums: %s\n"), psprintf(INT64_FORMAT, badblocks));
638
- printf(_("Data checksum version: %d\n"), ControlFile->data_checksum_version);
+ printf(_("Data checksum version: %u\n"), ControlFile->data_checksum_version);
639
640
if (badblocks > 0)
641
exit(1);
@@ -662,7 +662,7 @@ main(int argc, char *argv[])
662
update_controlfile(DataDir, ControlFile, do_sync);
663
664
if (verbose)
665
666
if (mode == PG_MODE_ENABLE)
667
printf(_("Checksums enabled in cluster\n"));
668
else
0 commit comments