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