aboutsummaryrefslogtreecommitdiffstats
path: root/skeletons
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2015-09-03 17:35:04 -0400
committerSimo Sorce <simo@redhat.com>2015-09-03 17:36:12 -0400
commit4f47bf56d40ca4da56e86862f0d930fb4081d025 (patch)
tree314135b9dbf0fab5c6fe14518d8b1e689a3f1c2d /skeletons
parent62913d8b8e1eb96d74315ff748475ca818b69752 (diff)
Keep static analyzers happy
Make it clear fall through is intentional. Signed-off-by: Simo Sorce <simo@redhat.com>
Diffstat (limited to 'skeletons')
-rw-r--r--skeletons/INTEGER.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/skeletons/INTEGER.c b/skeletons/INTEGER.c
index 8ead23d5..d805c56b 100644
--- a/skeletons/INTEGER.c
+++ b/skeletons/INTEGER.c
@@ -976,6 +976,7 @@ asn_strtol_lim(const char *str, const char **end, long *lp) {
case '-':
last_digit_max++;
sign = -1;
+ /* FALL THROUGH */
case '+':
str++;
if(str >= *end) {