diff options
Diffstat (limited to 'src/mem3.c')
-rw-r--r-- | src/mem3.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mem3.c b/src/mem3.c index 956d3734f..09a84b673 100644 --- a/src/mem3.c +++ b/src/mem3.c @@ -23,7 +23,7 @@ ** This version of the memory allocation subsystem is included ** in the build only if SQLITE_ENABLE_MEMSYS3 is defined. ** -** $Id: mem3.c,v 1.24 2008/11/19 14:35:47 danielk1977 Exp $ +** $Id: mem3.c,v 1.25 2008/11/19 16:52:44 danielk1977 Exp $ */ #include "sqliteInt.h" @@ -655,6 +655,8 @@ void sqlite3Memsys3Dump(const char *zFilename){ }else{ fclose(out); } +#else + UNUSED_PARAMETER(zFilename); #endif } |