diff options
author | danielk1977 <danielk1977@noemail.net> | 2008-11-19 09:05:26 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2008-11-19 09:05:26 +0000 |
commit | 62c14b3487d3d5a06c367c26b40476a17fc30d33 (patch) | |
tree | 5abb6c533a0b9ff9e193ade5af8d2ed7e9c38040 /src/main.c | |
parent | b232c23297248eb0753cf036c99f4bece9df992a (diff) | |
download | sqlite-62c14b3487d3d5a06c367c26b40476a17fc30d33.tar.gz sqlite-62c14b3487d3d5a06c367c26b40476a17fc30d33.zip |
Changes to avoid "unused parameter" compiler warnings. (CVS 5921)
FossilOrigin-Name: 88134322c36b41304aaeef99c39b4ef5b495ca3b
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c index 16f89b785..d1533cfeb 100644 --- a/src/main.c +++ b/src/main.c @@ -14,7 +14,7 @@ ** other files are for internal use by SQLite and should not be ** accessed by users of the library. ** -** $Id: main.c,v 1.513 2008/11/19 01:20:26 drh Exp $ +** $Id: main.c,v 1.514 2008/11/19 09:05:27 danielk1977 Exp $ */ #include "sqliteInt.h" #include <ctype.h> @@ -515,6 +515,7 @@ static int nocaseCollatingFunc( ){ int r = sqlite3StrNICmp( (const char *)pKey1, (const char *)pKey2, (nKey1<nKey2)?nKey1:nKey2); + UNUSED_PARAMETER(NotUsed); if( 0==r ){ r = nKey1-nKey2; } |