Skip to content

Commit

Permalink
Usage fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruno De Bel authored and Bruno De Bel committed Feb 8, 2018
1 parent 431e95f commit b053300
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions commonLib/paramMain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@ int contextParam::analyse(int argc, char** argv){
if (optopt == 'c')
fprintf (stderr, "Option -%c requires an argument.\n", optopt);
else if (isprint (optopt))
fprintf (stderr, "Unknown option `-%c'.\n", optopt);
fprintf (stderr, "Unknown option -%c.\n", optopt);
else
fprintf (stderr,
"Unknown option character `\\x%x'.\n",
"Unknown option character '\\x%x'.\n",
optopt);
fprintf (stderr, "usage: %s -c config.xml\n", argv[0]);
return -1;
Expand Down

0 comments on commit b053300

Please sign in to comment.