change to use sqlite_uint64 for MSVC compile; (CVS 5361)
FossilOrigin-Name: 369118ca2e9da55f44b946559ad38a14efe723e5
This commit is contained in:
parent
f43639a0bc
commit
5e73db36c6
14
manifest
14
manifest
@ -1,5 +1,5 @@
|
|||||||
C Test\scoverage\simprovements\sin\sprintf.c.\s(CVS\s5360)
|
C change\sto\suse\ssqlite_uint64\sfor\sMSVC\scompile;\s(CVS\s5361)
|
||||||
D 2008-07-08T02:24:03
|
D 2008-07-08T03:04:59
|
||||||
F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
|
F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
|
||||||
F Makefile.in 325dfac0a0dd1cb4d975f1ace6453157892e6042
|
F Makefile.in 325dfac0a0dd1cb4d975f1ace6453157892e6042
|
||||||
F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
|
F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
|
||||||
@ -149,7 +149,7 @@ F src/sqliteLimit.h f435e728c6b620ef7312814d660a81f9356eb5c8
|
|||||||
F src/status.c 6cb10377992505bd69f1ca1d75c1240a65f25a58
|
F src/status.c 6cb10377992505bd69f1ca1d75c1240a65f25a58
|
||||||
F src/table.c 1fa8f8113ac9cbc09ae4801c6d2a7f0af82c5822
|
F src/table.c 1fa8f8113ac9cbc09ae4801c6d2a7f0af82c5822
|
||||||
F src/tclsqlite.c 4dd9ee4cb44846ad9bcc4d0da8088c1e7d4b33d9
|
F src/tclsqlite.c 4dd9ee4cb44846ad9bcc4d0da8088c1e7d4b33d9
|
||||||
F src/test1.c 6baa867e394e55b5dbb0a2e605ba52a20fb671ce
|
F src/test1.c e6a7515b9c1d4a0f5baf88d12ab7476ec41c7352
|
||||||
F src/test2.c c46d146019ab6e37474e66b3c789e5237d9ea7b7
|
F src/test2.c c46d146019ab6e37474e66b3c789e5237d9ea7b7
|
||||||
F src/test3.c 01ff03164cf6a2bededa3b44ecd481603e2644fc
|
F src/test3.c 01ff03164cf6a2bededa3b44ecd481603e2644fc
|
||||||
F src/test4.c ff4ecde3cafc71337b04e8cb7da5bb88e85d70e7
|
F src/test4.c ff4ecde3cafc71337b04e8cb7da5bb88e85d70e7
|
||||||
@ -600,7 +600,7 @@ F tool/speedtest16.c c8a9c793df96db7e4933f0852abb7a03d48f2e81
|
|||||||
F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
|
F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
|
||||||
F tool/speedtest8.c 1dbced29de5f59ba2ebf877edcadf171540374d1
|
F tool/speedtest8.c 1dbced29de5f59ba2ebf877edcadf171540374d1
|
||||||
F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
|
F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
|
||||||
P 65875005ac8bc7988d7d7d8e8b999857449568fd
|
P 6f2629c78327bb6cbb15d1f9900a1ef58f2d37dd
|
||||||
R 23693314e34adf232597662e6e934b58
|
R 18a26bc89f174a9c318cb7d42425a4b2
|
||||||
U drh
|
U shane
|
||||||
Z f9ac4fdaeaf8da093b1800067c3b5339
|
Z 6593495d35209a42e3237ec7dfb5e511
|
||||||
|
@ -1 +1 @@
|
|||||||
6f2629c78327bb6cbb15d1f9900a1ef58f2d37dd
|
369118ca2e9da55f44b946559ad38a14efe723e5
|
@ -13,7 +13,7 @@
|
|||||||
** is not included in the SQLite library. It is used for automated
|
** is not included in the SQLite library. It is used for automated
|
||||||
** testing of the SQLite library.
|
** 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 "sqliteInt.h"
|
||||||
#include "tcl.h"
|
#include "tcl.h"
|
||||||
@ -1344,8 +1344,8 @@ static int sqlite3_mprintf_hexdouble(
|
|||||||
){
|
){
|
||||||
char *z;
|
char *z;
|
||||||
double r;
|
double r;
|
||||||
unsigned x1, x2;
|
unsigned int x1, x2;
|
||||||
long long unsigned d;
|
sqlite_uint64 d;
|
||||||
if( argc!=3 ){
|
if( argc!=3 ){
|
||||||
Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
|
Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
|
||||||
" FORMAT STRING\"", 0);
|
" FORMAT STRING\"", 0);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user