Skip to content

Commit

Permalink
Change P25 to M17
Browse files Browse the repository at this point in the history
  • Loading branch information
nostar committed Nov 29, 2021
1 parent fe4d8de commit 2f4dcd6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions M172DMR/M172DMR.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,10 @@ int main(int argc, char** argv)
for (int currentArg = 1; currentArg < argc; ++currentArg) {
std::string arg = argv[currentArg];
if ((arg == "-v") || (arg == "--version")) {
::fprintf(stdout, "P252DMR version %s\n", VERSION);
::fprintf(stdout, "M172DMR version %s\n", VERSION);
return 0;
} else if (arg.substr(0, 1) == "-") {
::fprintf(stderr, "Usage: P252DMR [-v|--version] [filename]\n");
::fprintf(stderr, "Usage: M172DMR [-v|--version] [filename]\n");
return 1;
} else {
iniFile = argv[currentArg];
Expand Down

0 comments on commit 2f4dcd6

Please sign in to comment.