aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <>2025-01-11 16:28:41 +0000
committerdrh <>2025-01-11 16:28:41 +0000
commit14bc98d8e2a7d07b98bf679b9e586043dd772bf3 (patch)
tree88bb7b0d0af987ede30d985faca81a5cca22dc49 /src
parent4b5e8c926ac48d83f70ae9fc1db8a6a9f6b73454 (diff)
downloadsqlite-14bc98d8e2a7d07b98bf679b9e586043dd772bf3.tar.gz
sqlite-14bc98d8e2a7d07b98bf679b9e586043dd772bf3.zip
Fix harmless "implicit fall through" warnings that suddenly appeared when
I upgraded to gcc-13. FossilOrigin-Name: 3e2875dac27de1525d9c78f38ac5f1fc12fec7e1b43dbdf47798b128fae49084
Diffstat (limited to 'src')
-rw-r--r--src/shell.c.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/shell.c.in b/src/shell.c.in
index db0604eb1..17054a961 100644
--- a/src/shell.c.in
+++ b/src/shell.c.in
@@ -7337,7 +7337,7 @@ static int arProcessSwitch(ArCommand *pAr, int eSwitch, const char *zArg){
break;
case AR_SWITCH_APPEND:
pAr->bAppend = 1;
- deliberate_fall_through;
+ deliberate_fall_through; /* FALLTHRU */
case AR_SWITCH_FILE:
pAr->zFile = zArg;
break;
@@ -12029,7 +12029,7 @@ static QuickScanState quickscan(char *zLine, QuickScanState qss,
break;
case '[':
cin = ']';
- deliberate_fall_through;
+ deliberate_fall_through; /* FALLTHRU */
case '`': case '\'': case '"':
cWait = cin;
qss = QSS_HasDark | cWait;
@@ -12064,7 +12064,7 @@ static QuickScanState quickscan(char *zLine, QuickScanState qss,
++zLine;
continue;
}
- deliberate_fall_through;
+ deliberate_fall_through; /* FALLTHRU */
case ']':
CONTINUE_PROMPT_AWAITC(pst, 0);
qss = QSS_SETV(qss, 0);