From 8c04f89623005aaaac3acfcb0d367f6166ef65ac Mon Sep 17 00:00:00 2001 From: Jilles Tjoelker Date: Sun, 21 Sep 2014 17:44:34 +0200 Subject: [PATCH] libratbox: Add comment that case fallthrough is deliberate. --- libratbox/src/ratbox_lib.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libratbox/src/ratbox_lib.c b/libratbox/src/ratbox_lib.c index 4d11fd333..2a8af7230 100644 --- a/libratbox/src/ratbox_lib.c +++ b/libratbox/src/ratbox_lib.c @@ -415,6 +415,7 @@ rb_base64_decode(const unsigned char *str, int length, int *ret) return NULL; case 2: k++; + /* FALLTHROUGH */ case 3: result[k++] = 0; }