mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-07 02:42:48 +03:00
Fix some harmless compiler warnings in speedtest1.exe.
FossilOrigin-Name: c75f561f337a56c14335366ed9990e44bc9fc594
This commit is contained in:
12
manifest
12
manifest
@@ -1,5 +1,5 @@
|
|||||||
C Additional\stest\scases\sfor\sskip-scan.
|
C Fix\ssome\sharmless\scompiler\swarnings\sin\sspeedtest1.exe.
|
||||||
D 2013-11-27T13:48:02.795
|
D 2013-11-27T14:50:51.106
|
||||||
F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
|
F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
|
||||||
F Makefile.in e1a9b4258bbde53f5636f4e238c65b7e11459e2b
|
F Makefile.in e1a9b4258bbde53f5636f4e238c65b7e11459e2b
|
||||||
F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
|
F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
|
||||||
@@ -820,7 +820,7 @@ F test/speed3.test d32043614c08c53eafdc80f33191d5bd9b920523
|
|||||||
F test/speed4.test abc0ad3399dcf9703abed2fff8705e4f8e416715
|
F test/speed4.test abc0ad3399dcf9703abed2fff8705e4f8e416715
|
||||||
F test/speed4p.explain 6b5f104ebeb34a038b2f714150f51d01143e59aa
|
F test/speed4p.explain 6b5f104ebeb34a038b2f714150f51d01143e59aa
|
||||||
F test/speed4p.test 0e51908951677de5a969b723e03a27a1c45db38b
|
F test/speed4p.test 0e51908951677de5a969b723e03a27a1c45db38b
|
||||||
F test/speedtest1.c aa08ae8e3591bf5c028be9396a84237640761d8c
|
F test/speedtest1.c 39921e422974a0330f3efde03797795947e648b2
|
||||||
F test/spellfix.test 8c40b169b104086d8795781f670ba3c786d6d8be
|
F test/spellfix.test 8c40b169b104086d8795781f670ba3c786d6d8be
|
||||||
F test/sqllimits1.test b1aae27cc98eceb845e7f7adf918561256e31298
|
F test/sqllimits1.test b1aae27cc98eceb845e7f7adf918561256e31298
|
||||||
F test/stat.test c8eccfe8fcd3f3cfc864ce22d5b9e803a3c69940
|
F test/stat.test c8eccfe8fcd3f3cfc864ce22d5b9e803a3c69940
|
||||||
@@ -1145,7 +1145,7 @@ F tool/vdbe-compress.tcl f12c884766bd14277f4fcedcae07078011717381
|
|||||||
F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
|
F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
|
||||||
F tool/warnings.sh d1a6de74685f360ab718efda6265994b99bbea01
|
F tool/warnings.sh d1a6de74685f360ab718efda6265994b99bbea01
|
||||||
F tool/win/sqlite.vsix 030f3eeaf2cb811a3692ab9c14d021a75ce41fff
|
F tool/win/sqlite.vsix 030f3eeaf2cb811a3692ab9c14d021a75ce41fff
|
||||||
P ceebcdcaf1acf409b77b4cc2903b4570001f098a
|
P ce70803f5e1bfb4dc495d3a0c2ddd5ee6c3a10fe
|
||||||
R bcfcf6f48c85e4fa706276f8ed169192
|
R 095247e62fa36b05416c8693f0a2370e
|
||||||
U drh
|
U drh
|
||||||
Z 88c6067bf128a26cfad7d97b15ea7137
|
Z 29cf28ff7ccc2664a2648cb15c3f491d
|
||||||
|
@@ -1 +1 @@
|
|||||||
ce70803f5e1bfb4dc495d3a0c2ddd5ee6c3a10fe
|
c75f561f337a56c14335366ed9990e44bc9fc594
|
@@ -122,8 +122,8 @@ static int integerValue(const char *zArg){
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if( v>=2147483648 ) fatal_error("parameter to large - max 2147483648");
|
if( v>0x7fffffff ) fatal_error("parameter to large - max 2147483648");
|
||||||
return isNeg? -v : v;
|
return (int)(isNeg? -v : v);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Return the current wall-clock time, in milliseconds */
|
/* Return the current wall-clock time, in milliseconds */
|
||||||
@@ -256,8 +256,8 @@ void speedtest1_begin_test(int iTestNum, const char *zTestName, ...){
|
|||||||
sqlite3_free(zName);
|
sqlite3_free(zName);
|
||||||
g.nResult = 0;
|
g.nResult = 0;
|
||||||
g.iStart = speedtest1_timestamp();
|
g.iStart = speedtest1_timestamp();
|
||||||
g.x = 2903710987;
|
g.x = 0xad131d0b;
|
||||||
g.y = 1157229256;
|
g.y = 0x44f9eac8;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Complete a test case */
|
/* Complete a test case */
|
||||||
|
Reference in New Issue
Block a user