diff options
author | shane <shane@noemail.net> | 2008-07-08 03:04:58 +0000 |
---|---|---|
committer | shane <shane@noemail.net> | 2008-07-08 03:04:58 +0000 |
commit | 5e73db36c65abb02c233e2095ed56f40b1457281 (patch) | |
tree | 5a0355f84dbd69129c09c496d9b93fec09d3c7ba /src | |
parent | f43639a0bc89109e2f605e2b40aa71f0f9fd553c (diff) | |
download | sqlite-5e73db36c65abb02c233e2095ed56f40b1457281.tar.gz sqlite-5e73db36c65abb02c233e2095ed56f40b1457281.zip |
change to use sqlite_uint64 for MSVC compile; (CVS 5361)
FossilOrigin-Name: 369118ca2e9da55f44b946559ad38a14efe723e5
Diffstat (limited to 'src')
-rw-r--r-- | src/test1.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test1.c b/src/test1.c index 2b98179fe..923ea6903 100644 --- a/src/test1.c +++ b/src/test1.c @@ -13,7 +13,7 @@ ** is not included in the SQLite library. It is used for automated ** testing of the SQLite library. ** -** $Id: test1.c,v 1.312 2008/07/08 02:12:37 drh Exp $ +** $Id: test1.c,v 1.313 2008/07/08 03:04:59 shane Exp $ */ #include "sqliteInt.h" #include "tcl.h" @@ -1344,8 +1344,8 @@ static int sqlite3_mprintf_hexdouble( ){ char *z; double r; - unsigned x1, x2; - long long unsigned d; + unsigned int x1, x2; + sqlite_uint64 d; if( argc!=3 ){ Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0], " FORMAT STRING\"", 0); |