From: drh Date: Mon, 16 Aug 2010 16:31:43 +0000 (+0000) Subject: Fix a typo in a comment in wal.c. No code changes. X-Git-Tag: version-3.7.2~34 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6cef0cf7a95253a31e8ee12d003c34d1c396f8be;p=thirdparty%2Fsqlite.git Fix a typo in a comment in wal.c. No code changes. FossilOrigin-Name: d854a3d41c68f785c909c159cd9ca2154c64001a --- diff --git a/manifest b/manifest index d9367cd272..e349323f86 100644 --- a/manifest +++ b/manifest @@ -1,8 +1,8 @@ -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 -C Add\sALWAYS()\smacros\sin\swal.c\sto\scover\sbranches\sthat\sare\sno\slonger\sreachable\nfollowing\sthe\spager\srefactoring. -D 2010-08-16T14:18:00 +C Fix\sa\stypo\sin\sa\scomment\sin\swal.c.\s\sNo\scode\schanges. +D 2010-08-16T16:31:44 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f F Makefile.in ec08dc838fd8110fe24c92e5130bcd91cbb1ff2e F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23 @@ -230,7 +230,7 @@ F src/vdbeblob.c 258a6010ba7a82b72b327fb24c55790655689256 F src/vdbemem.c e5673f81a2381b35c60e73ef0a8502be2ab1041e F src/vdbetrace.c 864cef96919323482ebd9986f2132435115e9cc2 F src/vtab.c 0e8e0cb30dffb078367e843e84e37ef99236c7e4 -F src/wal.c 6b170507776d01e1af01d19762564b75f1e0c98d +F src/wal.c 241b963c0244b26eba2d5de63fb96a94dad0bc3b F src/wal.h 96669b645e27cd5a111ba59f0cae7743a207bc3c F src/walker.c 3112bb3afe1d85dc52317cb1d752055e9a781f8f F src/where.c 7db3e41c2a846f9deeb24f1bbb75461b4010b7b5 @@ -846,14 +846,14 @@ F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e F tool/vdbe-compress.tcl d70ea6d8a19e3571d7ab8c9b75cba86d1173ff0f -P faf1974e2de321bfefb68b81d702ae69771933ef -R d448d7a55c7f1edda8088cf8cf2f24b3 +P 24f24c927c77bb3bb4d26a23dd5d94f964db8033 +R d04163fd1f7348336648868a2a4ab08f U drh -Z 0dbfc6c0fd736ea91ec08670fb6d2090 +Z a03fc86522180e0948d68c0cc84f776d -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) -iD8DBQFMaUicoxKgR168RlERAqtPAJ97MonTPU5sZIrsJVkp01tYjFeJXACdFB90 -bjtppN7EGnG+XgMC6cgZQ8I= -=OPhy +iD8DBQFMaWf1oxKgR168RlERAmiQAJ9VgSroQGOcjT5p2FV9QqaWvXB1+ACfc4XT +3pX56Rvqq1NdrK3kl/RP/5U= +=9oof -----END PGP SIGNATURE----- diff --git a/manifest.uuid b/manifest.uuid index 255b758cca..c6f3717766 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -24f24c927c77bb3bb4d26a23dd5d94f964db8033 \ No newline at end of file +d854a3d41c68f785c909c159cd9ca2154c64001a \ No newline at end of file diff --git a/src/wal.c b/src/wal.c index 07c1e2d2e7..12b5b73c43 100644 --- a/src/wal.c +++ b/src/wal.c @@ -1706,7 +1706,7 @@ static int walIndexTryHdr(Wal *pWal, int *pChanged){ /* The first page of the wal-index must be mapped at this point. */ assert( pWal->nWiData>0 && pWal->apWiData[0] ); - /* Read the header. This might happen currently with a write to the + /* Read the header. This might happen concurrently with a write to the ** same area of shared memory on a different CPU in a SMP, ** meaning it is possible that an inconsistent snapshot is read ** from the file. If this happens, return non-zero.