diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-05-03 12:29:40 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-05-03 12:29:40 -0500 |
commit | 029218cd9cd3192a2a61ac29d896a2c3640f2dd8 (patch) | |
tree | 409ed94d89448d355a9baddd6e33ad8b1a0b141b | |
parent | a209c81b78b8af98c53748bc1eb9020ef6b2605e (diff) | |
download | digikam-029218cd9cd3192a2a61ac29d896a2c3640f2dd8.tar.gz digikam-029218cd9cd3192a2a61ac29d896a2c3640f2dd8.zip |
Fix 'format not a string literal' error
-rw-r--r-- | digikam/libs/sqlite2/shell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/digikam/libs/sqlite2/shell.c b/digikam/libs/sqlite2/shell.c index 1100f386..89898ab4 100644 --- a/digikam/libs/sqlite2/shell.c +++ b/digikam/libs/sqlite2/shell.c @@ -692,7 +692,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 ){ |