1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-07-01 00:25:06 +02:00

Remove incorrect comment.

This was likely pasted from pageChecksum() and not removed.
This commit is contained in:
David Steele
2020-03-03 18:01:56 -05:00
parent 507a58460e
commit e8daabb963

View File

@ -214,7 +214,6 @@ pageLsn(const unsigned char *page)
FUNCTION_TEST_PARAM_P(UCHARDATA, page);
FUNCTION_TEST_END();
// Reduce to a uint16 with an offset of one. That avoids checksums of zero, which seems like a good idea.
FUNCTION_TEST_RETURN((uint64_t)((PageHeader)page)->pd_lsn.walid << 32 | ((PageHeader)page)->pd_lsn.xrecoff);
}