diff options
author | Francois Andriot <francois.andriot@free.fr> | 2013-08-15 21:03:45 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2013-08-15 21:03:45 +0200 |
commit | 13618b73e353f9016f7c890e6b51eda2229737d1 (patch) | |
tree | 0031cbf4597c3e51ee1f0e3796aa00f7f6d057a2 /src/3rdparty/sqlite/shell.c | |
parent | 5f10ba05fcbc9358b0b7bd6ac1aa87e5afd46959 (diff) | |
download | tqt3-13618b73e353f9016f7c890e6b51eda2229737d1.tar.gz tqt3-13618b73e353f9016f7c890e6b51eda2229737d1.zip |
Fix 'format not a string literal' error
Diffstat (limited to 'src/3rdparty/sqlite/shell.c')
-rw-r--r-- | src/3rdparty/sqlite/shell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rdparty/sqlite/shell.c b/src/3rdparty/sqlite/shell.c index 58771aa78..93210666e 100644 --- a/src/3rdparty/sqlite/shell.c +++ b/src/3rdparty/sqlite/shell.c @@ -688,7 +688,7 @@ static int do_meta_command(char *zLine, struct callback_data *p){ }else if( c=='h' && strncmp(azArg[0], "help", n)==0 ){ - fprintf(stderr,zHelp); + fprintf(stderr,"%s",zHelp); }else if( c=='i' && strncmp(azArg[0], "indices", n)==0 && nArg>1 ){ |