]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix spacing typo in comment. No changes to code.
authormistachkin <mistachkin@noemail.net>
Thu, 10 Dec 2015 03:16:47 +0000 (03:16 +0000)
committermistachkin <mistachkin@noemail.net>
Thu, 10 Dec 2015 03:16:47 +0000 (03:16 +0000)
FossilOrigin-Name: 3a18526fc2253658dad84c5e600481c8a62efe40

manifest
manifest.uuid
src/wal.c

index 32f43abbabfb7f6f1b93850399c881bbdcbce8d8..a92f8a6ff18710f2997e4e65e03b1250c3c9f4df 100644 (file)
--- 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
index 028205ec436198b2faf2a7f0918ed10d5a456fde..d5273835aa14248e81335212ca9089347ed2fe1c 100644 (file)
@@ -1 +1 @@
-cb68e9d0738fc7db7316947b4d2aab91aae819f2
\ No newline at end of file
+3a18526fc2253658dad84c5e600481c8a62efe40
\ No newline at end of file
index 784f993bfcaf644ebc158dd162476902195e2a81..0115e06027a1912d1d7c3b906271e012540ae31f 100644 (file)
--- 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 afteall backfilling completes.  So if a checkpoint
 ** crashes, nBackfillAttempted might be larger than nBackfill.  The
 ** WalIndexHdr.mxFrame must never be less than nBackfillAttempted.
 **