aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <>2024-10-14 09:08:02 +0000
committerdrh <>2024-10-14 09:08:02 +0000
commit72fea118094177bcc9971d9937bb1f704b22d9f3 (patch)
tree028a3a2ae32bc76c3a69666031dc14b2f6de010f /src
parenta4ff06f056045f6c078a6ae1eb41bc4f754860d9 (diff)
downloadsqlite-72fea118094177bcc9971d9937bb1f704b22d9f3.tar.gz
sqlite-72fea118094177bcc9971d9937bb1f704b22d9f3.zip
Fix a harmless compiler warning in the CLI.
FossilOrigin-Name: 31c46e84fffe29c45fc63ae8cd1f96f42196f0ab56e72cd07b4eedbd9058e85b
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 ec32acca7..13a362a85 100644
--- a/src/shell.c.in
+++ b/src/shell.c.in
@@ -1856,6 +1856,8 @@ static void setCrnlMode(ShellState *p){
}else{
sqlite3_fsetmode(p->out, _O_BINARY);
}
+#else
+ UNUSED_PARAMETER(p);
#endif
}