diff options
author | Alexander Couzens <lynxis@fe80.eu> | 2018-07-05 03:12:26 +0200 |
---|---|---|
committer | Alexander Couzens <lynxis@fe80.eu> | 2018-07-11 22:03:47 +0200 |
commit | b06b01178e4908dfd380b95a922f407ed8274fed (patch) | |
tree | cbf60de18fbc57d2523f96b78b863296e42b1c38 | |
parent | 60293a7a3656aab8c10f2d1827d1da88ad46d32c (diff) |
proto-shell.c: add a explicit "fall through" comment to make the compiler happy
Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
Acked-by: Hans Dedecker <dedeckeh@gmail.com>
-rw-r--r-- | proto-shell.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/proto-shell.c b/proto-shell.c index ef56aa8..9653f4c 100644 --- a/proto-shell.c +++ b/proto-shell.c @@ -212,7 +212,8 @@ proto_shell_handler(struct interface_proto_state *proto, state->sm = S_SETUP_ABORT; return 0; } - /* fall through if no script task is running */ + /* if no script task is running */ + /* fall through */ case S_IDLE: action = "teardown"; state->renew_pending = false; |