mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-30 19:03:16 +03:00
Fix harmless "implicit fall through" warnings that suddenly appeared when
I upgraded to gcc-13. FossilOrigin-Name: 3e2875dac27de1525d9c78f38ac5f1fc12fec7e1b43dbdf47798b128fae49084
This commit is contained in:
@ -232,12 +232,16 @@ static u8* fromBase85( char *pIn, int ncIn, u8 *pOut ){
|
||||
switch( nbo ){
|
||||
case 4:
|
||||
*pOut++ = (qv >> 24)&0xff;
|
||||
/* FALLTHRU */
|
||||
case 3:
|
||||
*pOut++ = (qv >> 16)&0xff;
|
||||
/* FALLTHRU */
|
||||
case 2:
|
||||
*pOut++ = (qv >> 8)&0xff;
|
||||
/* FALLTHRU */
|
||||
case 1:
|
||||
*pOut++ = qv&0xff;
|
||||
/* FALLTHRU */
|
||||
case 0:
|
||||
break;
|
||||
}
|
||||
|
Reference in New Issue
Block a user