Fix for -Wunused-but-set-variable

This commit is contained in:
RincewindsHat 2023-10-16 00:59:30 +02:00
parent 15b4e89a42
commit 79e2f52094

View file

@ -1064,12 +1064,10 @@ int get_results(void){
/* process command-line arguments */
int process_arguments(int argc, char **argv){
int arg_index;
if(argc<1)
return ERROR;
arg_index = call_getopt(argc,argv);
call_getopt(argc,argv);
return validate_arguments(argc);
}