aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <>2024-12-07 17:08:13 +0000
committerdrh <>2024-12-07 17:08:13 +0000
commit92d252e06db3fcfb06e5d3f45f4aa6f5e0c7cedc (patch)
treecc92fc28d85e4078fc6e540f033c85ac82a27519 /src
parent45978701089cd4e143aa7b72843390417c4e43be (diff)
downloadsqlite-92d252e06db3fcfb06e5d3f45f4aa6f5e0c7cedc.tar.gz
sqlite-92d252e06db3fcfb06e5d3f45f4aa6f5e0c7cedc.zip
Fix more harmless compiler warnings.
FossilOrigin-Name: f5b8fd77635e5e6d2d88a1ce74e1bd6c4311260a2b695e5055b898b880bf5718
Diffstat (limited to 'src')
-rw-r--r--src/shell.c.in2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/shell.c.in b/src/shell.c.in
index 2df54d5b3..e5276258d 100644
--- a/src/shell.c.in
+++ b/src/shell.c.in
@@ -6637,6 +6637,8 @@ static int shell_dbtotxt_command(ShellState *p, int nArg, char **azArg){
int rc, i, j;
unsigned char bShow[256]; /* Characters ok to display */
+ UNUSED_PARAMETER(nArg);
+ UNUSED_PARAMETER(azArg);
memset(bShow, '.', sizeof(bShow));
for(i=' '; i<='~'; i++){
if( i!='{' && i!='}' && i!='"' && i!='\\' ) bShow[i] = (unsigned char)i;