1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Fix a typo in a comment in wal.c.

FossilOrigin-Name: e0f898f356e50568ebf62f18f39b05d2428038b88e277613bbed818dac1b0fd0
This commit is contained in:
dan
2025-02-17 19:06:01 +00:00
parent 097f6fe61c
commit ac729222a1
3 changed files with 9 additions and 9 deletions

View File

@@ -471,7 +471,7 @@ int sqlite3WalTrace = 0;
# ifdef SQLITE_ENABLE_WAL_BIGHASH
# define WAL_VERSION2 3048001 /* wal2, big-hash, checksums on frame hdrs */
# else
# define WAL_VERSION2 3048000 /* wal2, big-hash, full checksums */
# define WAL_VERSION2 3048000 /* wal2, checksums on frame hdrs */
# endif
# define isNocksum(pWal) isWalMode2(pWal)
#else