diff options
Diffstat (limited to 'src/malloc.c')
-rw-r--r-- | src/malloc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/malloc.c b/src/malloc.c index bc321ab9a..a04734868 100644 --- a/src/malloc.c +++ b/src/malloc.c @@ -12,7 +12,7 @@ ** Memory allocation functions used throughout sqlite. ** ** -** $Id: malloc.c,v 1.13 2007/08/29 14:06:23 danielk1977 Exp $ +** $Id: malloc.c,v 1.14 2007/10/20 16:36:31 drh Exp $ */ #include "sqliteInt.h" #include <stdarg.h> @@ -237,4 +237,3 @@ int sqlite3ApiExit(sqlite3* db, int rc){ } return rc & (db ? db->errMask : 0xff); } - |