Add default case in switch

This commit is contained in:
Marcus Holland-Moritz 2021-03-06 14:48:00 +01:00
parent a9b7bf35b1
commit 60a31dc346

View File

@ -481,6 +481,9 @@ int option_hdl(void* data, const char* arg, int key,
usage(opts->progname);
}
break;
default:
break;
}
return 1;