aboutsummaryrefslogtreecommitdiff
path: root/src/malloc.c
diff options
context:
space:
mode:
authorshaneh <shaneh@noemail.net>2011-04-15 19:30:42 +0000
committershaneh <shaneh@noemail.net>2011-04-15 19:30:42 +0000
commitca591feb34f83391703ae840f2431fa81b57a17c (patch)
treec9dc6b506233b866ab807e64fcb921a94d995c1e /src/malloc.c
parent8e1bb041a80e0f21b2825d4eaa24cefaed5ae55d (diff)
downloadsqlite-ca591feb34f83391703ae840f2431fa81b57a17c.tar.gz
sqlite-ca591feb34f83391703ae840f2431fa81b57a17c.zip
Remove stray semi-colon that MSVC complained about.
FossilOrigin-Name: 7a085271ff85033479c2057c19a45a750168d228
Diffstat (limited to 'src/malloc.c')
-rw-r--r--src/malloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/malloc.c b/src/malloc.c
index 623d7e855..3585f1245 100644
--- a/src/malloc.c
+++ b/src/malloc.c
@@ -507,7 +507,7 @@ void sqlite3DbFree(sqlite3 *db, void *p){
** Change the size of an existing memory allocation
*/
void *sqlite3Realloc(void *pOld, int nBytes){
- int nOld, nNew, nDiff;;
+ int nOld, nNew, nDiff;
void *pNew;
if( pOld==0 ){
return sqlite3Malloc(nBytes); /* IMP: R-28354-25769 */