diff options
author | danielk1977 <danielk1977@noemail.net> | 2004-05-10 10:34:51 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2004-05-10 10:34:51 +0000 |
commit | 6f8a503d71977f70bb203ee738dfbf5a646851e4 (patch) | |
tree | ee420ba1c4afc856c7b2585b33a8e20371680252 /src/update.c | |
parent | 24b03fd055b993519961b0cffb2a79a4942fb3c7 (diff) | |
download | sqlite-6f8a503d71977f70bb203ee738dfbf5a646851e4.tar.gz sqlite-6f8a503d71977f70bb203ee738dfbf5a646851e4.zip |
Change the names of external symbols from sqlite_XXX to sqlite3_XXX. (CVS 1338)
FossilOrigin-Name: 2242423e31a5e81e89ffcc99e62307c5cc0120d5
Diffstat (limited to 'src/update.c')
-rw-r--r-- | src/update.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/update.c b/src/update.c index 128b6ed4d..71d893899 100644 --- a/src/update.c +++ b/src/update.c @@ -12,7 +12,7 @@ ** This file contains C code routines that are called by the parser ** to handle UPDATE statements. ** -** $Id: update.c,v 1.71 2004/05/08 08:23:40 danielk1977 Exp $ +** $Id: update.c,v 1.72 2004/05/10 10:35:00 danielk1977 Exp $ */ #include "sqliteInt.h" @@ -59,7 +59,7 @@ void sqlite3Update( int oldIdx = -1; /* index of trigger "old" temp table */ sContext.pParse = 0; - if( pParse->nErr || sqlite_malloc_failed ) goto update_cleanup; + if( pParse->nErr || sqlite3_malloc_failed ) goto update_cleanup; db = pParse->db; assert( pTabList->nSrc==1 ); |