Skip to content

Commit

Permalink
Move -g arg to correct place
Browse files Browse the repository at this point in the history
  • Loading branch information
MatejKafka committed Apr 28, 2021
1 parent 3b6b3f6 commit afbbb3a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -251,9 +251,6 @@ int main(int argc, char *argv[])

while ((opt = getopt(argc, argv, "c:C:p:g:m:M:sdh")) != -1) {
switch (opt) {
case 'g': // custom root cgroup name
opt_demos_cg_name = optarg;
break;
case 'c': // config file path
config_file = optarg;
break;
Expand All @@ -263,6 +260,9 @@ int main(int argc, char *argv[])
case 'p': // selected power policy
power_policy_name = optarg;
break;
case 'g': // custom root cgroup name
opt_demos_cg_name = optarg;
break;
case 'm': // window start sync message
window_sync_message = optarg;
break;
Expand Down

0 comments on commit afbbb3a

Please sign in to comment.