From c31eb7fad9b7d27299d953a88bc416591636bb3e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Mon, 20 Apr 2020 11:52:12 +0200 Subject: [PATCH] Add fall through comment to silence compiler warning --- abduco.c | 1 + 1 file changed, 1 insertion(+) diff --git a/abduco.c b/abduco.c index afaf13d..b56e6f4 100644 --- a/abduco.c +++ b/abduco.c @@ -697,6 +697,7 @@ int main(int argc, char *argv[]) { die("create-session"); if (action == 'n') break; + /* fall through */ case 'a': if (!attach_session(server.session_name, true)) die("attach-session"); -- 2.11.4.GIT