We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentf7f83a5 commit888671aCopy full SHA for 888671a
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