From: dan Date: Fri, 5 Jul 2013 11:10:54 +0000 (+0000) Subject: Add missing "static" qualifier to functions in where.c. X-Git-Tag: version-3.8.0~104 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b2cfc146709f2b5519aec249f8497cec1b99c233;p=thirdparty%2Fsqlite.git Add missing "static" qualifier to functions in where.c. FossilOrigin-Name: 5c906e914b63eb00e62c6c2a535e234a75d95030 --- diff --git a/manifest b/manifest index 20789804bb..82362cdfc4 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Make\sa\scouple\sof\simplicit\scasts\sexplicit\sto\sfix\scompiler\swarnings. -D 2013-07-05T10:46:08.884 +C Add\smissing\s"static"\squalifier\sto\sfunctions\sin\swhere.c. +D 2013-07-05T11:10:54.720 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f F Makefile.in 5e41da95d92656a5004b03d3576e8b226858a28e F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23 @@ -290,7 +290,7 @@ F src/vtab.c b05e5f1f4902461ba9f5fc49bb7eb7c3a0741a83 F src/wal.c 7dc3966ef98b74422267e7e6e46e07ff6c6eb1b4 F src/wal.h df01efe09c5cb8c8e391ff1715cca294f89668a4 F src/walker.c 4fa43583d0a84b48f93b1e88f11adf2065be4e73 -F src/where.c 987eaefc924cec74a818ec270cbd9aef393fa9a6 +F src/where.c 7867ef5b45785847ae68a93a68d05861344f07f0 F test/8_3_names.test ebbb5cd36741350040fd28b432ceadf495be25b2 F test/aggerror.test a867e273ef9e3d7919f03ef4f0e8c0d2767944f2 F test/aggnested.test 45c0201e28045ad38a530b5a144b73cd4aa2cfd6 @@ -1100,7 +1100,7 @@ F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4 F tool/warnings.sh fbc018d67fd7395f440c28f33ef0f94420226381 F tool/wherecosttest.c f407dc4c79786982a475261866a161cd007947ae F tool/win/sqlite.vsix 97894c2790eda7b5bce3cc79cb2a8ec2fde9b3ac -P 91bc840eea2099273bd2c5d41a8410d628986643 -R deccf2168e1e48506e14ad0676da0974 +P 9676280a9387b8bfba82cfc0087318863d05d4f3 +R 31b1b2c50cf05706bef7f66bbddc89ce U dan -Z b57579196039a4f95c7ed3b693371a8b +Z 585181147ecd24ec63d416538bc4d146 diff --git a/manifest.uuid b/manifest.uuid index b3239c8c0d..e297bba756 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -9676280a9387b8bfba82cfc0087318863d05d4f3 \ No newline at end of file +5c906e914b63eb00e62c6c2a535e234a75d95030 \ No newline at end of file diff --git a/src/where.c b/src/where.c index f00a5eb810..a241e12842 100644 --- a/src/where.c +++ b/src/where.c @@ -822,7 +822,7 @@ static u16 operatorMask(int op){ ** established when the pScan object was initialized by whereScanInit(). ** Return NULL if there are no more matching WhereTerms. */ -WhereTerm *whereScanNext(WhereScan *pScan){ +static WhereTerm *whereScanNext(WhereScan *pScan){ int iCur; /* The cursor on the LHS of the term */ int iColumn; /* The column on the LHS of the term. -1 for IPK */ Expr *pX; /* An expression being tested */ @@ -909,7 +909,7 @@ WhereTerm *whereScanNext(WhereScan *pScan){ ** If X is not the INTEGER PRIMARY KEY then X must be compatible with ** index pIdx. */ -WhereTerm *whereScanInit( +static WhereTerm *whereScanInit( WhereScan *pScan, /* The WhereScan object being initialized */ WhereClause *pWC, /* The WHERE clause to be scanned */ int iCur, /* Cursor to scan for */