1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

Fix harmless compiler warnings in test code for MSVC.

FossilOrigin-Name: 7b76be4117f4e57091b03fafcf42d17bce81160d
This commit is contained in:
drh
2016-11-11 20:37:27 +00:00
4 changed files with 11 additions and 12 deletions

View File

@@ -114,7 +114,7 @@ static int SQLITE_TCLAPI test_blob_open(
const char *zVarname;
int nVarname;
sqlite3_blob *pBlob = (sqlite3_blob*)0xFFFFFFFF;
sqlite3_blob *pBlob = (sqlite3_blob*)&flags; /* Non-zero initialization */
int rc;
if( objc!=8 ){