diff options
author | danielk1977 <danielk1977@noemail.net> | 2008-06-23 14:03:45 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2008-06-23 14:03:45 +0000 |
commit | 867d05a01918b7004c16d739a105ae164c76eac7 (patch) | |
tree | 0041aa80b5657790784694dc991d56200e25aff6 /src/sqliteInt.h | |
parent | 5dfecba1a497ff7ea7a4901bd97a41df9c527884 (diff) | |
download | sqlite-867d05a01918b7004c16d739a105ae164c76eac7.tar.gz sqlite-867d05a01918b7004c16d739a105ae164c76eac7.zip |
Fix some codewarrior compilation problems. (CVS 5278)
FossilOrigin-Name: e6ea8f87c102bd36ab0f2fbc8360fde49f4e3422
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index bc2863575..999d855de 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.723 2008/06/23 09:50:52 danielk1977 Exp $ +** @(#) $Id: sqliteInt.h,v 1.724 2008/06/23 14:03:45 danielk1977 Exp $ */ #ifndef _SQLITEINT_H_ #define _SQLITEINT_H_ @@ -2214,7 +2214,7 @@ CollSeq *sqlite3BinaryCompareCollSeq(Parse *, Expr *, Expr *); void sqlite3EndBenignMalloc(void); #else #define sqlite3BeginBenignMalloc() - #define sqlite3FaultEndBenign() + #define sqlite3EndBenignMalloc() #endif #define IN_INDEX_ROWID 1 |