diff options
author | drh <drh@noemail.net> | 2015-05-15 04:13:15 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2015-05-15 04:13:15 +0000 |
commit | 22c17b8bf5c1600b488b6ce491c7bbdc0f3204d0 (patch) | |
tree | 4a9a224eca899cd0b0cbdb6478a315107164a629 /src/sqliteInt.h | |
parent | f922ca497dd3b72db072c63beabb97fe437a1589 (diff) | |
download | sqlite-22c17b8bf5c1600b488b6ce491c7bbdc0f3204d0.tar.gz sqlite-22c17b8bf5c1600b488b6ce491c7bbdc0f3204d0.zip |
Simplifications to error message processing. Fix a possible problem in error
message formatting when vacuuming a database with a corrupt schema.
FossilOrigin-Name: 56ef98a04765c34c1c2f3ed7a6f03a732f3b886e
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index d809245a6..586d4d07e 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -3151,7 +3151,6 @@ void sqlite3VXPrintf(StrAccum*, u32, const char*, va_list); void sqlite3XPrintf(StrAccum*, u32, const char*, ...); char *sqlite3MPrintf(sqlite3*,const char*, ...); char *sqlite3VMPrintf(sqlite3*,const char*, va_list); -char *sqlite3MAppendf(sqlite3*,char*,const char*,...); #if defined(SQLITE_DEBUG) || defined(SQLITE_HAVE_OS_TRACE) void sqlite3DebugPrintf(const char*, ...); #endif @@ -3170,7 +3169,7 @@ char *sqlite3MAppendf(sqlite3*,char*,const char*,...); #endif -void sqlite3SetString(char **, sqlite3*, const char*, ...); +void sqlite3SetString(char **, sqlite3*, const char*); void sqlite3ErrorMsg(Parse*, const char*, ...); int sqlite3Dequote(char*); int sqlite3KeywordCode(const unsigned char*, int); |