1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-05 15:55:57 +03:00

In test3.c, use type 'u32' instead of 'unsigned int' to remove a warning/error from native x86_64 compile. (CVS 5165)

FossilOrigin-Name: 02447e4e47659d70f014529e9baa3bf8ff75844c
This commit is contained in:
shane
2008-05-27 20:17:00 +00:00
parent b8109ad375
commit 1ca0ed4692
3 changed files with 9 additions and 9 deletions

View File

@@ -13,7 +13,7 @@
** is not included in the SQLite library. It is used for automated
** testing of the SQLite library.
**
** $Id: test3.c,v 1.95 2008/04/24 19:15:10 shane Exp $
** $Id: test3.c,v 1.96 2008/05/27 20:17:01 shane Exp $
*/
#include "sqliteInt.h"
#include "btreeInt.h"
@@ -420,7 +420,7 @@ static int btree_get_meta(
pBt = sqlite3TextToPtr(argv[1]);
for(i=0; i<SQLITE_N_BTREE_META; i++){
char zBuf[30];
unsigned int v;
u32 v;
sqlite3BtreeEnter(pBt);
rc = sqlite3BtreeGetMeta(pBt, i, &v);
sqlite3BtreeLeave(pBt);