diff options
author | drh <drh@noemail.net> | 2012-04-19 18:04:28 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2012-04-19 18:04:28 +0000 |
commit | 83cc139231e651c3aba29f3b6620e26e7bae45c3 (patch) | |
tree | 72cd49a919eafd795c32e81e75b8d42742a99ff4 /src/test6.c | |
parent | 7ed243b71abf1f989e9c6ba2904b6f84a8cecaa7 (diff) | |
download | sqlite-83cc139231e651c3aba29f3b6620e26e7bae45c3.tar.gz sqlite-83cc139231e651c3aba29f3b6620e26e7bae45c3.zip |
Fix harmless compiler warnings on x64 MSVC, mostly in test code, but also in
tclsqlite.c and in the FTS4 module.
FossilOrigin-Name: 3281972eaa46cb57fd9f0387063f47430dc0a3b4
Diffstat (limited to 'src/test6.c')
-rw-r--r-- | src/test6.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test6.c b/src/test6.c index e2cee0919..bae6b65dc 100644 --- a/src/test6.c +++ b/src/test6.c @@ -468,8 +468,8 @@ static int cfSync(sqlite3_file *pFile, int flags){ const char *zName = pCrash->zName; const char *zCrashFile = g.zCrashFile; - int nName = strlen(zName); - int nCrashFile = strlen(zCrashFile); + int nName = (int)strlen(zName); + int nCrashFile = (int)strlen(zCrashFile); if( nCrashFile>0 && zCrashFile[nCrashFile-1]=='*' ){ nCrashFile--; |