diff options
author | drh <> | 2025-01-14 16:10:13 +0000 |
---|---|---|
committer | drh <> | 2025-01-14 16:10:13 +0000 |
commit | 290caec8e32bc00e9d5bc80c8b08736e820f0ea7 (patch) | |
tree | 308112388d9ffae6bd88f94f04fcc2fc5f55fd7e /ext/misc | |
parent | 942c9587698715734715242737dba07ef296b0ef (diff) | |
download | sqlite-290caec8e32bc00e9d5bc80c8b08736e820f0ea7.tar.gz sqlite-290caec8e32bc00e9d5bc80c8b08736e820f0ea7.zip |
Trying to remove a warning from some compiler that I do not have access to.
FossilOrigin-Name: bc6de90c7049dd429a82d32b186a838f4a21aa7b8a83418eaf0416d19771b41e
Diffstat (limited to 'ext/misc')
-rw-r--r-- | ext/misc/base64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/misc/base64.c b/ext/misc/base64.c index b8147707f..17b3bbfc7 100644 --- a/ext/misc/base64.c +++ b/ext/misc/base64.c @@ -198,7 +198,7 @@ static u8* fromBase64( char *pIn, int ncIn, u8 *pOut ){ deliberate_fall_through; /* FALLTHRU */ case 1: pOut[0] = (qv>>16) & 0xff; - deliberate_fall_through; /* FALLTHRU */ + break; } pOut += nbo; } |