aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/libtle_dring/tle_dring.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libtle_dring/tle_dring.h b/lib/libtle_dring/tle_dring.h
index 9d3788a..6aac22a 100644
--- a/lib/libtle_dring/tle_dring.h
+++ b/lib/libtle_dring/tle_dring.h
@@ -107,8 +107,10 @@ __tle_dring_copy_objs(const void *dst[], const void * const src[], uint32_t num)
switch (num % 4) {
case 3:
dst[i + 2] = src[i + 2];
+ /* fallthrough */
case 2:
dst[i + 1] = src[i + 1];
+ /* fallthrough */
case 1:
dst[i] = src[i];
}