From: mistachkin Date: Thu, 10 Dec 2015 03:16:47 +0000 (+0000) Subject: Fix spacing typo in comment. No changes to code. X-Git-Tag: version-3.10.0~44^2~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c9fb38e7adf81cd7ca2b1af4f64bb5787c7dad05;p=thirdparty%2Fsqlite.git Fix spacing typo in comment. No changes to code. FossilOrigin-Name: 3a18526fc2253658dad84c5e600481c8a62efe40 --- diff --git a/manifest b/manifest index 32f43abbab..a92f8a6ff1 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Add\sthe\snBackfillAttempted\sfield\sin\sformerly\sunused\sspace\sin\sWalCkptInfo\sand\nuse\sthat\sfield\sto\sclose\sthe\srace\scondition\son\sopening\sa\ssnapshot. -D 2015-12-10T02:15:03.333 +C Fix\sspacing\stypo\sin\scomment.\s\sNo\schanges\sto\scode. +D 2015-12-10T03:16:47.044 F Makefile.in 28bcd6149e050dff35d4dcfd97e890cd387a499d F Makefile.linux-gcc 7bc79876b875010e8c8f9502eb935ca92aa3c434 F Makefile.msc e8fdca1cb89a1b58b5f4d3a130ea9a3d28cb314d @@ -415,7 +415,7 @@ F src/vdbesort.c a7ec02da4494c59dfd071126dd3726be5a11459d F src/vdbetrace.c 8befe829faff6d9e6f6e4dee5a7d3f85cc85f1a0 F src/vtab.c 2a8b44aa372c33f6154208e7a7f6c44254549806 F src/vxworks.h c18586c8edc1bddbc15c004fa16aeb1e1342b4fb -F src/wal.c 115765a38fa4a03d7334b6ba77db0cedae682eb0 +F src/wal.c 964af61902acead7de6e95035d0ce597f7019da9 F src/wal.h 907943dfdef10b583e81906679a347e0ec6f1b1b F src/walker.c 2e14d17f592d176b6dc879c33fbdec4fbccaa2ba F src/where.c b18edbb9e5afabb77f4f27550c471c5c824e0fe7 @@ -1409,7 +1409,7 @@ F tool/vdbe_profile.tcl 246d0da094856d72d2c12efec03250d71639d19f F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4 F tool/warnings.sh 48bd54594752d5be3337f12c72f28d2080cb630b F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f -P 7315f7cbf4179aadda0f1a0baa1526a9b9f9729f -R 70ffd1e2449a67c034eb4185ab7bdad1 -U drh -Z 159fdbba63f7473f88a04e9240766d6d +P cb68e9d0738fc7db7316947b4d2aab91aae819f2 +R 76ea636367cbd8afb53a2670ba03ae31 +U mistachkin +Z 1d7611d28a33701f209bc754328c05f3 diff --git a/manifest.uuid b/manifest.uuid index 028205ec43..d5273835aa 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -cb68e9d0738fc7db7316947b4d2aab91aae819f2 \ No newline at end of file +3a18526fc2253658dad84c5e600481c8a62efe40 \ No newline at end of file diff --git a/src/wal.c b/src/wal.c index 784f993bfc..0115e06027 100644 --- a/src/wal.c +++ b/src/wal.c @@ -332,7 +332,7 @@ struct WalIndexHdr { ** nBackfillAttempted is the largest value of nBackfill that a checkpoint ** has attempted to achieve. Normally nBackfill==nBackfillAtempted, however ** the nBackfillAttempted is set before any backfilling is done and the -** nBackfill is only set afte rall backfilling completes. So if a checkpoint +** nBackfill is only set after all backfilling completes. So if a checkpoint ** crashes, nBackfillAttempted might be larger than nBackfill. The ** WalIndexHdr.mxFrame must never be less than nBackfillAttempted. **