diff options
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/net/ns_addr.c | 2 | ||||
-rw-r--r-- | lib/libc/net/ns_ntoa.c | 2 | ||||
-rw-r--r-- | lib/libc/regex/regcomp.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/net/ns_addr.c b/lib/libc/net/ns_addr.c index 6ebcbbb3..1c77bcc 100644 --- a/lib/libc/net/ns_addr.c +++ b/lib/libc/net/ns_addr.c @@ -167,7 +167,7 @@ Field(buf, out, len) case 'h': case 'H': base16 = 1; - /* fall into */ + /* FALLTHROUGH */ default: *--bp = 0; /* Ends Loop */ diff --git a/lib/libc/net/ns_ntoa.c b/lib/libc/net/ns_ntoa.c index 0063a8c..8caa554 100644 --- a/lib/libc/net/ns_ntoa.c +++ b/lib/libc/net/ns_ntoa.c @@ -91,7 +91,7 @@ spectHex(p0) case 'a': case 'b': case 'c': case 'd': case 'e': case 'f': *p += ('A' - 'a'); - /* fall into . . . */ + /* FALLTHROUGH */ case 'A': case 'B': case 'C': case 'D': case 'E': case 'F': ok = 1; case '1': case '2': case '3': case '4': case '5': diff --git a/lib/libc/regex/regcomp.c b/lib/libc/regex/regcomp.c index 2dcd497..91de8d7 100644 --- a/lib/libc/regex/regcomp.c +++ b/lib/libc/regex/regcomp.c @@ -1741,7 +1741,7 @@ struct re_guts *g; return; } } while (OP(s) != O_QUEST && OP(s) != O_CH); - /* fallthrough */ + /* FALLTHROUGH */ case OBOW: /* things that break a sequence */ case OEOW: case OBOL: |