]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix typos in logging code.
authormistachkin <mistachkin@noemail.net>
Thu, 8 May 2014 22:15:13 +0000 (22:15 +0000)
committermistachkin <mistachkin@noemail.net>
Thu, 8 May 2014 22:15:13 +0000 (22:15 +0000)
FossilOrigin-Name: dc7f84dfcc8415fad4af041fd30c20b3fd91be45

manifest
manifest.uuid
src/os_win.c

index 47ccc7a75acc5e1cbc6b483820314f9422a0395d..ec6377555e933a31fa3772b140477cfd044a93d8 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Fix\sa\smemory\sleak\sof\sthe\stemporary\sread\sbuffer.
-D 2014-05-08T22:08:22.181
+C Fix\stypos\sin\slogging\scode.
+D 2014-05-08T22:15:13.894
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in ad0921c4b2780d01868cf69b419a4f102308d125
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -205,7 +205,7 @@ F src/os.c 1b147e4cf7cc39e618115c14a086aed44bc91ace
 F src/os.h 4a46270a64e9193af4a0aaa3bc2c66dc07c29b3f
 F src/os_common.h 92815ed65f805560b66166e3583470ff94478f04
 F src/os_unix.c ae4b5240af4619d711301d7992396e182585269f
-F src/os_win.c c9a60c0c174b979ec59c9153f073cdd0090c4b99
+F src/os_win.c b9c5bcee7c68117f57e6f9f231614796f784752a
 F src/pager.c ab62a24218d87dda1be641f6c5ad291bff78fd94
 F src/pager.h ffd5607f7b3e4590b415b007a4382f693334d428
 F src/parse.y 22d6a074e5f5a7258947a1dc55a9bf946b765dd0
@@ -1171,7 +1171,7 @@ F tool/vdbe_profile.tcl 67746953071a9f8f2f668b73fe899074e2c6d8c1
 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
 F tool/warnings.sh d1a6de74685f360ab718efda6265994b99bbea01
 F tool/win/sqlite.vsix 030f3eeaf2cb811a3692ab9c14d021a75ce41fff
-P a60c545f255f7da53e0ebcde8743532b54bafdb6
-R 5f08c0c074dd1c10ad2faeb58305095e
+P 37e60d211f70d12eda6d8b63da5e5e307e9d1748
+R 003cca4a0717d2339a3508a0f730ef08
 U mistachkin
-Z 8753af9b4d783bb233d495311dbe8a85
+Z 72fe979f39d255b6bde769412d2399a9
index 697f5b68ee37bc92882d9b758c489df9e6f82d98..62156cd62870f2909b8ee9c7a3ce743dd229ce0e 100644 (file)
@@ -1 +1 @@
-37e60d211f70d12eda6d8b63da5e5e307e9d1748
\ No newline at end of file
+dc7f84dfcc8415fad4af041fd30c20b3fd91be45
\ No newline at end of file
index 81aedf8293431fc148aadd2bf7e05cdd26e73cf2..d1229a0ce865acf0fa31060c276710377cfafb07 100644 (file)
@@ -3249,7 +3249,7 @@ static void *winPreCacheThread(void *pCtx){
     osCloseHandle(dupHandle);
     OSTRACE(("PRE-CACHE file=%p, rc=SQLITE_IOERR_SEEK\n", dupHandle));
     return winLogError(SQLITE_IOERR_SEEK, pFile->lastErrno,
-                       "winPreCacheThread2", pFile->zPath);
+                       "winPreCacheThread3", pFile->zPath);
   }
   dwAmt = 4194304; /* TODO: Tuning. */
   if( dwSize<dwAmt ){
@@ -3268,14 +3268,14 @@ static void *winPreCacheThread(void *pCtx){
       osCloseHandle(dupHandle);
       OSTRACE(("PRE-CACHE file=%p, rc=SQLITE_IOERR_READ\n", dupHandle));
       return winLogError(SQLITE_IOERR_READ, pFile->lastErrno,
-                         "winPreCacheThread3", pFile->zPath);
+                         "winPreCacheThread4", pFile->zPath);
     }
     if( nRead<dwAmt ){
       sqlite3_free(pBuf);
       osCloseHandle(dupHandle);
       OSTRACE(("PRE-CACHE file=%p, rc=SQLITE_IOERR_SHORT_READ\n", dupHandle));
       return winLogError(SQLITE_IOERR_SHORT_READ, pFile->lastErrno,
-                         "winPreCacheThread4", pFile->zPath);
+                         "winPreCacheThread5", pFile->zPath);
     }
     dwSize -= dwAmt;
     if( dwSize==0 ){