diff options
author | drh <drh@noemail.net> | 2004-04-26 14:10:20 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2004-04-26 14:10:20 +0000 |
commit | 3aac2dd7bccac440b6cb97b7baf17c9c6c3c2708 (patch) | |
tree | 5d02b3a977c8d5e4f710a0c65b59923a3f2a863f /src/util.c | |
parent | 9e572e608fd19ca7b173808061282304d16dd8b0 (diff) | |
download | sqlite-3aac2dd7bccac440b6cb97b7baf17c9c6c3c2708.tar.gz sqlite-3aac2dd7bccac440b6cb97b7baf17c9c6c3c2708.zip |
Pager tests working. (CVS 1308)
FossilOrigin-Name: 910067a200c4b25b5d813a84146673d3d1c80952
Diffstat (limited to 'src/util.c')
-rw-r--r-- | src/util.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/util.c b/src/util.c index 16b3b46a0..1f1d5462b 100644 --- a/src/util.c +++ b/src/util.c @@ -14,7 +14,7 @@ ** This file contains functions for allocating memory, comparing ** strings, and stuff like that. ** -** $Id: util.c,v 1.74 2004/02/22 17:49:34 drh Exp $ +** $Id: util.c,v 1.75 2004/04/26 14:10:22 drh Exp $ */ #include "sqliteInt.h" #include <stdarg.h> @@ -405,6 +405,7 @@ void sqliteSetNString(char **pz, ...){ va_end(ap); } +#if 0 /* ** Add an error message to pParse->zErrMsg and increment pParse->nErr. ** The following formatting characters are allowed: @@ -423,6 +424,7 @@ void sqliteErrorMsg(Parse *pParse, const char *zFormat, ...){ pParse->zErrMsg = sqliteVMPrintf(zFormat, ap); va_end(ap); } +#endif /* ** Convert an SQL-style quoted string into a normal string by removing |