Skip to content

Commit

Permalink
uhdm-dump: Fix sequence in printing help.
Browse files Browse the repository at this point in the history
The --version addition messed up the printed paragraph.

Signed-off-by: Henner Zeller <[email protected]>
  • Loading branch information
hzeller committed Mar 28, 2023
1 parent 7d94eae commit 38c2614
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions util/uhdm-dump.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,10 @@ static int usage(const char *progname) {
"Options:\n"
"\t--elab : Elaborate the restored design.\n"
"\t--verbose : print diagnostic messages.\n"
"\t--version : print version and exit.\n"
"\nIf golden file is given to compare, exit code represent if output "
"matches.\n"
"\t--version : print version and exit.\n");
"matches.\n");

return 1;
}

Expand Down

0 comments on commit 38c2614

Please sign in to comment.