1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-05 04:30:38 +03:00

Fix a harmless compiler warning in the command-line shell code.

FossilOrigin-Name: a80527f60b4856e869f25e7b13afde351bc26a25
This commit is contained in:
drh
2014-05-29 20:39:59 +00:00
parent b463fef3fd
commit 3c4461f47a
3 changed files with 8 additions and 8 deletions

View File

@@ -2998,7 +2998,7 @@ static int do_meta_command(char *zLine, struct callback_data *p){
zCmd = sqlite3_mprintf(strchr(azArg[i],' ')==0?"%z %s":"%z \"%s\"",
zCmd, azArg[i]);
}
system(zCmd);
(void)system(zCmd);
sqlite3_free(zCmd);
}else