* src/newusers.c: There is no need to test for 0 after

getopt_long. No options have flag != NULL.
This commit is contained in:
nekral-guest
2009-04-28 20:08:30 +00:00
parent a1591f77e8
commit 613dc54ac5
2 changed files with 7 additions and 4 deletions

View File

@ -518,9 +518,6 @@ static void process_flags (int argc, char **argv)
}
break;
#endif
case 0:
/* long option */
break;
default:
usage ();
break;