Remove an unused variable from the test code in test3.c. (CVS 6843)
FossilOrigin-Name: 9e35bec9ef924ec44e87294a549238e0104bb27b
This commit is contained in:
parent
53bc21b911
commit
ee152b00a3
12
manifest
12
manifest
@ -1,5 +1,5 @@
|
|||||||
C Add\sa\sversion\sof\sthe\sLemon\sparser\stemplate\s"lempar.c"\sto\sthe\ssrc/\ssubfolder.\nThis\snew\sparser\stemplate\scontains\sa\scouple\sof\sNEVER()\smacros\sthat\sdisable\ntests\sthat\sare\sneeded\sfor\sgeneral\sgrammars\sbut\snot\sfor\sthe\sspecific\sgrammar\nused\sby\sSQLite.\s\sSQLite\sbuilds\swith\sthe\smodified\slempar.c.\s(CVS\s6842)
|
C Remove\san\sunused\svariable\sfrom\sthe\stest\scode\sin\stest3.c.\s(CVS\s6843)
|
||||||
D 2009-07-03T17:09:29
|
D 2009-07-03T17:23:49
|
||||||
F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
|
F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
|
||||||
F Makefile.in df9359da7a726ccb67a45db905c5447d5c00c6ef
|
F Makefile.in df9359da7a726ccb67a45db905c5447d5c00c6ef
|
||||||
F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
|
F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
|
||||||
@ -170,7 +170,7 @@ F src/table.c cc86ad3d6ad54df7c63a3e807b5783c90411a08d
|
|||||||
F src/tclsqlite.c d3195e0738c101a155404ecdb1cd9532a2fd34f2
|
F src/tclsqlite.c d3195e0738c101a155404ecdb1cd9532a2fd34f2
|
||||||
F src/test1.c c8f9358879876660b721369f576bf6e4ac5b9210
|
F src/test1.c c8f9358879876660b721369f576bf6e4ac5b9210
|
||||||
F src/test2.c d73e4a490349245fb196b990b80684513e0ceaee
|
F src/test2.c d73e4a490349245fb196b990b80684513e0ceaee
|
||||||
F src/test3.c 56750fb15ec9430b3ddb343df727bc164462a706
|
F src/test3.c a06da9e41583fe8e4eb8c4dea323bb72bdbaaa1e
|
||||||
F src/test4.c f79ab52d27ff49b784b631a42e2ccd52cfd5c84c
|
F src/test4.c f79ab52d27ff49b784b631a42e2ccd52cfd5c84c
|
||||||
F src/test5.c 162a1cea2105a2c460a3f39fa6919617b562a288
|
F src/test5.c 162a1cea2105a2c460a3f39fa6919617b562a288
|
||||||
F src/test6.c 1a0a7a1f179469044b065b4a88aab9faee114101
|
F src/test6.c 1a0a7a1f179469044b065b4a88aab9faee114101
|
||||||
@ -740,7 +740,7 @@ F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
|
|||||||
F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
|
F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
|
||||||
F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
|
F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
|
||||||
F tool/vdbe-compress.tcl 672f81d693a03f80f5ae60bfefacd8a349e76746
|
F tool/vdbe-compress.tcl 672f81d693a03f80f5ae60bfefacd8a349e76746
|
||||||
P e2112d6160a82ccd4b6a1c798d2064d0f1b086eb
|
P d426cc64f6014e2c2b9bcde0f5440396aec2fa18
|
||||||
R 5862319005bb231f8fac623d2c658ee4
|
R 71282d767a29083a25c6769a94945778
|
||||||
U drh
|
U drh
|
||||||
Z cc4b6935284af8bd6025cca79acfe570
|
Z 1d50698ba153e51b17ade341f16a7dc5
|
||||||
|
@ -1 +1 @@
|
|||||||
d426cc64f6014e2c2b9bcde0f5440396aec2fa18
|
9e35bec9ef924ec44e87294a549238e0104bb27b
|
@ -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: test3.c,v 1.106 2009/07/02 07:47:33 danielk1977 Exp $
|
** $Id: test3.c,v 1.107 2009/07/03 17:23:49 drh Exp $
|
||||||
*/
|
*/
|
||||||
#include "sqliteInt.h"
|
#include "sqliteInt.h"
|
||||||
#include "btreeInt.h"
|
#include "btreeInt.h"
|
||||||
@ -413,7 +413,6 @@ static int btree_get_meta(
|
|||||||
const char **argv /* Text of each argument */
|
const char **argv /* Text of each argument */
|
||||||
){
|
){
|
||||||
Btree *pBt;
|
Btree *pBt;
|
||||||
int rc;
|
|
||||||
int i;
|
int i;
|
||||||
if( argc!=2 ){
|
if( argc!=2 ){
|
||||||
Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
|
Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
|
||||||
|
Loading…
Reference in New Issue
Block a user