1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-22 20:22:44 +03:00

Fix some codewarrior compilation problems. (CVS 5278)

FossilOrigin-Name: e6ea8f87c102bd36ab0f2fbc8360fde49f4e3422
This commit is contained in:
danielk1977
2008-06-23 14:03:45 +00:00
parent 5dfecba1a4
commit 867d05a019
4 changed files with 13 additions and 13 deletions

View File

@@ -12,7 +12,7 @@
**
** Memory allocation functions used throughout sqlite.
**
** $Id: malloc.c,v 1.24 2008/06/23 11:11:36 danielk1977 Exp $
** $Id: malloc.c,v 1.25 2008/06/23 14:03:45 danielk1977 Exp $
*/
#include "sqliteInt.h"
#include <stdarg.h>
@@ -349,7 +349,7 @@ void sqlite3ScratchFree(void *p){
}
}else{
int i;
i = p - sqlite3Config.pScratch;
i = (u8 *)p - (u8 *)sqlite3Config.pScratch;
i /= sqlite3Config.szScratch;
assert( i>=0 && i<sqlite3Config.nScratch );
sqlite3_mutex_enter(mem0.mutex);
@@ -428,7 +428,7 @@ void sqlite3PageFree(void *p){
** in the mem0.aPageFree[] array.
*/
int i;
i = p - sqlite3Config.pPage;
i = (u8 *)p - (u8 *)sqlite3Config.pPage;
i /= sqlite3Config.szPage;
assert( i>=0 && i<sqlite3Config.nPage );
sqlite3_mutex_enter(mem0.mutex);