From c58ba8ffb581384561533218c05162e18ecae2df Mon Sep 17 00:00:00 2001 From: Mohamad Chaarawi Date: Tue, 10 Sep 2019 14:11:55 +0000 Subject: [PATCH] add break that was accidentally removed Signed-off-by: Mohamad Chaarawi --- src/option.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/option.c b/src/option.c index 41ed09d..26c7b2d 100644 --- a/src/option.c +++ b/src/option.c @@ -316,6 +316,7 @@ static void option_parse_token(char ** argv, int * flag_parsed_next, int * requi if(strlen(arg) > 1){ printf("Error, ignoring remainder of string for option %c (%s).\n", o->shortVar, o->longVar); } + break; } case('l'):{ *(long long*) o->variable = string_to_bytes(arg);