1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-01 06:27:03 +03:00

Make USE_FULLWARN=1 the default for MSVC and fix harmless compiler warnings.

FossilOrigin-Name: 6bf673767b8e5cedef1acff795cbe524fab8db2525c06424db4e038934a33936
This commit is contained in:
mistachkin
2017-04-14 14:50:34 +00:00
parent d97cda43ab
commit b1ed717f18
7 changed files with 24 additions and 24 deletions

View File

@ -82,10 +82,10 @@ int main(int argc, char **argv){
int bVacuum = 0;
int rc;
sqlite3_int64 nProgress = 0;
int nArg = argc-2;
int nArgc = argc-2;
if( argc<3 ) usage(argv[0]);
for(i=1; i<nArg; i++){
for(i=1; i<nArgc; i++){
const char *zArg = argv[i];
int nArg = strlen(zArg);
if( nArg>1 && nArg<=8 && 0==memcmp(zArg, "-vacuum", nArg) ){