From: drh Date: Sun, 1 Dec 2013 01:18:29 +0000 (+0000) Subject: Fix typos in the header comment on the sqlite3Atoi64() routine. X-Git-Tag: version-3.8.2~15 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a256c1a4b3e362733577d0b151e985b2453ae71f;p=thirdparty%2Fsqlite.git Fix typos in the header comment on the sqlite3Atoi64() routine. FossilOrigin-Name: c85e0c546ea6c6be46deea5c7a716b5fb553c7b4 --- diff --git a/manifest b/manifest index 940dfe0022..7b389a5499 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Detect\sa\scorrupt\sUnpackedRecord\sand\sreturn\sSQLITE_CORRUPT\sprior\sto\scalling\nsqlite3BtreeMovetoUnpacked(). -D 2013-11-30T12:49:28.537 +C Fix\stypos\sin\sthe\sheader\scomment\son\sthe\ssqlite3Atoi64()\sroutine. +D 2013-12-01T01:18:29.458 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f F Makefile.in e1a9b4258bbde53f5636f4e238c65b7e11459e2b F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23 @@ -278,7 +278,7 @@ F src/tokenize.c ec4c1a62b890bf1dbcdb966399e140b904c700a4 F src/trigger.c d84e1f3669e9a217731a14a9d472b1c7b87c87ba F src/update.c c05a0ee658f1a149e0960dfd110f3b8bd846bcb0 F src/utf.c 6fc6c88d50448c469c5c196acf21617a24f90269 -F src/util.c cbe054290f780fcd472b89d701c7404c51ec9684 +F src/util.c c1d47254d805074226eb68bab2327f2559799d88 F src/vacuum.c 3728d74919d4fb1356f9e9a13e27773db60b7179 F src/vdbe.c 54894fde8dc806d259e015ac7c9680145e725835 F src/vdbe.h c06f0813f853566457ce9cfb1a4a4bc39a5da644 @@ -1145,7 +1145,7 @@ F tool/vdbe-compress.tcl f12c884766bd14277f4fcedcae07078011717381 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4 F tool/warnings.sh d1a6de74685f360ab718efda6265994b99bbea01 F tool/win/sqlite.vsix 030f3eeaf2cb811a3692ab9c14d021a75ce41fff -P f865be10e85a4063394a21827db2d854fc25960c -R b4c7c44fd7f9f4c41a202ec1f5d2e636 +P 55ec474db8935ef36fae30da5d11f5701c60c088 +R d4e526e47db9fa86e2dd72e39606971c U drh -Z 430bb09012d5a037af5177ecb970e2fe +Z 5cc45f2d22e4b0c01c22c0dac659e6ce diff --git a/manifest.uuid b/manifest.uuid index 4da7a7d3de..2023f47b7b 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -55ec474db8935ef36fae30da5d11f5701c60c088 \ No newline at end of file +c85e0c546ea6c6be46deea5c7a716b5fb553c7b4 \ No newline at end of file diff --git a/src/util.c b/src/util.c index 5aa8af68d9..e59f5238f8 100644 --- a/src/util.c +++ b/src/util.c @@ -465,12 +465,12 @@ static int compare2pow63(const char *zNum, int incr){ ** If the zNum value is representable as a 64-bit twos-complement ** integer, then write that value into *pNum and return 0. ** -** If zNum is exactly 9223372036854665808, return 2. This special -** case is broken out because while 9223372036854665808 cannot be a -** signed 64-bit integer, its negative -9223372036854665808 can be. +** If zNum is exactly 9223372036854775808, return 2. This special +** case is broken out because while 9223372036854775808 cannot be a +** signed 64-bit integer, its negative -9223372036854775808 can be. ** ** If zNum is too big for a 64-bit integer and is not -** 9223372036854665808 or if zNum contains any non-numeric text, +** 9223372036854775808 or if zNum contains any non-numeric text, ** then return 1. ** ** length is the number of bytes in the string (bytes, not characters).