aboutsummaryrefslogtreecommitdiff
path: root/src/func.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2013-11-09 19:47:15 +0000
committerdrh <drh@noemail.net>2013-11-09 19:47:15 +0000
commiteb091cdfc4824513c29ece0e61edbbe1803c6ee9 (patch)
tree745066231aacc74e703e8ee180edefa645a4722b /src/func.c
parentd2fe3358cff19be1537118ecd3b2ab9fa83cf77f (diff)
downloadsqlite-eb091cdfc4824513c29ece0e61edbbe1803c6ee9.tar.gz
sqlite-eb091cdfc4824513c29ece0e61edbbe1803c6ee9.zip
Updates to requirements marks. No changes to code.
FossilOrigin-Name: 8a0366285b94dc43d932736e7b1eedb71e241857
Diffstat (limited to 'src/func.c')
-rw-r--r--src/func.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/func.c b/src/func.c
index e2ab68f03..c9962f6d9 100644
--- a/src/func.c
+++ b/src/func.c
@@ -138,8 +138,8 @@ static void absFunc(sqlite3_context *context, int argc, sqlite3_value **argv){
i64 iVal = sqlite3_value_int64(argv[0]);
if( iVal<0 ){
if( (iVal<<1)==0 ){
- /* IMP: R-35460-15084 If X is the integer -9223372036854775807 then
- ** abs(X) throws an integer overflow error since there is no
+ /* IMP: R-31676-45509 If X is the integer -9223372036854775808
+ ** then abs(X) throws an integer overflow error since there is no
** equivalent positive 64-bit two complement value. */
sqlite3_result_error(context, "integer overflow", -1);
return;