From 67e6707d7d97f17bcce82fe506ab5dfab59e53f2 Mon Sep 17 00:00:00 2001 From: 0x35c <> Date: Fri, 13 Jun 2025 11:52:16 +0200 Subject: [PATCH] fix: parsing continue with short options --- src/parsing.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parsing.c b/src/parsing.c index cf5d976..746c449 100644 --- a/src/parsing.c +++ b/src/parsing.c @@ -210,7 +210,7 @@ struct option_lst *parse_options(int ac, char *const *av) switch (c) { case 'F': add_option(&head, FL_FAST, optarg); - break; + continue; case '?': return NULL; default: