diff options
author | Vadim Yanitskiy <axilirator@gmail.com> | 2019-04-12 22:42:42 +0700 |
---|---|---|
committer | Vadim Yanitskiy <axilirator@gmail.com> | 2019-04-12 22:42:46 +0700 |
commit | 469147480a9a36a10f650bdeda09d5d7e0e9f1e3 (patch) | |
tree | 759a0047815f331257890d6016ef9d60a7d02379 /src/gsm | |
parent | b7344d08df34521c05d597fd0776f93204b78bac (diff) |
gsm/gsm_utils.c: indicate intentional fall-through
Change-Id: Ica7d2d1884b745fe30234d6c50d93828c4930680
Fixes: CID#57700
Diffstat (limited to 'src/gsm')
-rw-r--r-- | src/gsm/gsm_utils.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gsm/gsm_utils.c b/src/gsm/gsm_utils.c index 94c6ca5d..07f053c2 100644 --- a/src/gsm/gsm_utils.c +++ b/src/gsm/gsm_utils.c @@ -307,6 +307,7 @@ int gsm_septet_encode(uint8_t *result, const char *data) case 0x5d: case 0x7c: result[y++] = 0x1b; + /* fall-through */ default: result[y] = gsm_7bit_alphabet[ch]; break; |