Skip to content

Commit

Permalink
Cosmetic: Options should be sorted
Browse files Browse the repository at this point in the history
  • Loading branch information
gollux committed Oct 24, 2016
1 parent 0ede685 commit 7f55e36
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions isolate.c
Original file line number Diff line number Diff line change
Expand Up @@ -803,16 +803,16 @@ main(int argc, char **argv)
if (!set_dir_action(optarg))
usage("Invalid directory specified: %s\n", optarg);
break;
case 'f':
fsize_limit = atoi(optarg);
break;
case 'e':
pass_environ = 1;
break;
case 'E':
if (!set_env_action(optarg))
usage("Invalid environment specified: %s\n", optarg);
break;
case 'f':
fsize_limit = atoi(optarg);
break;
case 'k':
stack_limit = atoi(optarg);
break;
Expand Down

0 comments on commit 7f55e36

Please sign in to comment.