diff options
author | drh <> | 2024-12-16 12:08:47 +0000 |
---|---|---|
committer | drh <> | 2024-12-16 12:08:47 +0000 |
commit | 276172e4a3cb1ca03e6b498776b735378030efdb (patch) | |
tree | b9672d698c35378249fc1daa7b8513026d4763fb /src | |
parent | bba19534264983f79c3027cd964940e24a76eaed (diff) | |
download | sqlite-276172e4a3cb1ca03e6b498776b735378030efdb.tar.gz sqlite-276172e4a3cb1ca03e6b498776b735378030efdb.zip |
Remove unnecessary end-of-line whitespace.
FossilOrigin-Name: ae580443d210811c12209866112fc8b0b83281e24945504b748a17d93ad84062
Diffstat (limited to 'src')
-rw-r--r-- | src/wal.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -3737,12 +3737,12 @@ int sqlite3WalUndo(Wal *pWal, int (*xUndo)(void *, Pgno), void *pUndoCtx){ SEH_TRY { /* Restore the clients cache of the wal-index header to the state it - ** was in before the client began writing to the database. + ** was in before the client began writing to the database. */ memcpy(&pWal->hdr, (void *)walIndexHdr(pWal), sizeof(WalIndexHdr)); - - for(iFrame=pWal->hdr.mxFrame+1; - ALWAYS(rc==SQLITE_OK) && iFrame<=iMax; + + for(iFrame=pWal->hdr.mxFrame+1; + ALWAYS(rc==SQLITE_OK) && iFrame<=iMax; iFrame++ ){ /* This call cannot fail. Unless the page for which the page number |