aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authordanielk1977 <danielk1977@noemail.net>2008-11-19 09:05:26 +0000
committerdanielk1977 <danielk1977@noemail.net>2008-11-19 09:05:26 +0000
commit62c14b3487d3d5a06c367c26b40476a17fc30d33 (patch)
tree5abb6c533a0b9ff9e193ade5af8d2ed7e9c38040 /src/main.c
parentb232c23297248eb0753cf036c99f4bece9df992a (diff)
downloadsqlite-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.c3
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;
}