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

Fix a bunch of harmless warnings. (CVS 1749)

FossilOrigin-Name: fae7c6e004aa4752fd3db09a42bfdb900861b3c0
This commit is contained in:
danielk1977
2004-06-28 01:11:46 +00:00
parent 55e0af4653
commit e0d4b060db
9 changed files with 35 additions and 34 deletions

View File

@@ -9,7 +9,7 @@
** May you share freely, never taking more than you give.
**
*************************************************************************
** $Id: btree.c,v 1.173 2004/06/26 08:38:25 danielk1977 Exp $
** $Id: btree.c,v 1.174 2004/06/28 01:11:46 danielk1977 Exp $
**
** This file implements a external (disk-based) database using BTrees.
** For a detailed discussion of BTrees, refer to
@@ -443,7 +443,7 @@ static void parseCellPtr(
}else{
nPayload = 0;
}
n += getVarint(&pCell[n], &pInfo->nKey);
n += getVarint(&pCell[n], (u64 *)&pInfo->nKey);
pInfo->nHeader = n;
pInfo->nData = nPayload;
if( !pPage->intKey ){