1From 443980ddc82fb40e2e1f9544f2be169bd23dd246 Mon Sep 17 00:00:00 2001 2From: Khem Raj <raj.khem@gmail.com> 3Date: Sat, 17 Jun 2017 16:49:24 -0700 4Subject: [PATCH] shell.c: Fix format not a string literal warning 5 6src/shell.c:695:20: error: format not a string literal and no format arguments [-Werror=format-security] 7| fprintf(stderr,zHelp); 8| ^~~~~ 9 10Upstream-Status: Pending 11 12Signed-off-by: Khem Raj <raj.khem@gmail.com> 13--- 14 src/shell.c | 2 +- 15 1 file changed, 1 insertion(+), 1 deletion(-) 16 17diff --git a/src/shell.c b/src/shell.c 18index bb46c49..3c6fe0f 100644 19--- a/src/shell.c 20+++ b/src/shell.c 21@@ -692,7 +692,7 @@ static int do_meta_command(char *zLine, struct callback_data *p){ 22 }else 23 24 if( c=='h' && strncmp(azArg[0], "help", n)==0 ){ 25- fprintf(stderr,zHelp); 26+ fprintf(stderr, "%s", zHelp); 27 }else 28 29 if( c=='i' && strncmp(azArg[0], "indices", n)==0 && nArg>1 ){ 30-- 312.13.1 32 33