1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-10 01:02:56 +03:00

Remove stray semi-colon that MSVC complained about.

FossilOrigin-Name: 7a085271ff85033479c2057c19a45a750168d228
This commit is contained in:
shaneh
2011-04-15 19:30:42 +00:00
parent 8e1bb041a8
commit ca591feb34
3 changed files with 9 additions and 9 deletions

View File

@@ -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 */