summaryrefslogtreecommitdiffstats
path: root/kexi/3rdparty/kexisql
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-05-04 03:33:13 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-05-04 03:33:13 -0500
commit40de3fbbdbbae0f01e3baf22209b42889afb4caf (patch)
treed615e5b8f76f3526d6b9562ec3a1b4b6cabd5326 /kexi/3rdparty/kexisql
parent8f9f4e5697a733eb6c8eec6d056dc80c531b4ee0 (diff)
downloadkoffice-40de3fbbdbbae0f01e3baf22209b42889afb4caf.tar.gz
koffice-40de3fbbdbbae0f01e3baf22209b42889afb4caf.zip
Fix format string error
Diffstat (limited to 'kexi/3rdparty/kexisql')
-rw-r--r--kexi/3rdparty/kexisql/src/shell.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kexi/3rdparty/kexisql/src/shell.c b/kexi/3rdparty/kexisql/src/shell.c
index 6dbed415..8158e5ea 100644
--- a/kexi/3rdparty/kexisql/src/shell.c
+++ b/kexi/3rdparty/kexisql/src/shell.c
@@ -757,7 +757,7 @@ if (SQLITE_OK!=sqlite_finalize( pVm, &errMsg)) {
}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 ){