remove space between getopt and args

This commit is contained in:
randomuser 2021-06-11 00:59:07 -05:00
parent f8d95fd733
commit 113b75c415
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ void timerloop() {
int main(int argc, char **argv) {
char c;
while((c = getopt (argc, argv, "evdbfm:s:")) != -1) {
while((c = getopt(argc, argv, "evdbfm:s:")) != -1) {
switch(c) {
break; case 'e': s.e = 1;
break; case 'v': s.v = 1;