From 3f33cb9db3bcdb61c718ee908413ee5c832d5d4c Mon Sep 17 00:00:00 2001 From: girst Date: Tue, 19 Feb 2019 13:28:29 +0100 Subject: [PATCH] fix fallthough at -V thanks dax-dev --- sol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sol.c b/sol.c index 23154dc..2991947 100644 --- a/sol.c +++ b/sol.c @@ -84,7 +84,7 @@ int main(int argc, char** argv) { case 'c': op.s = &unicode_large_color; break; case 'm': op.s = &unicode_small_mono; break; /* "mini, monochrome" */ case 'M': op.s = &unicode_small_color; break; /* "mini, colorful" */ - case 'V': op.v = 0; /* WARN: experimental; might change */ + case 'V': op.v = 0; break; /* WARN: experimental; might change */ case 'h': default: goto error; error: fprintf (stderr, SHORTHELP LONGHELP KEYHELP, argv[0]); -- 2.39.3