Skip to content

Commit

Permalink
Merge pull request #327 from liutgnu/master
Browse files Browse the repository at this point in the history
Version option should return 0 rather than 1
  • Loading branch information
nhorman authored Aug 12, 2024
2 parents 35f52b9 + 5d9eb19 commit a350549
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion irqbalance.c
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ static void parse_command_line(int argc, char **argv)
break;
case 'V':
version();
exit(1);
exit(0);
break;
case 'c':
deepest_cache = strtoul(optarg, &endptr, 10);
Expand Down

0 comments on commit a350549

Please sign in to comment.