| 1538 | // Print error message for a disallowed command switch. |
| 1539 | |
| 1540 | void ErrorArgv(CONST char *szOpt) |
| 1541 | { |
| 1542 | char sz[cchSzDef]; |
| 1543 | |
| 1544 | sprintf(sz, "The switch %c%s is not allowed now.\n", chSwitch, szOpt); |
| 1545 | PrintError(sz); |
| 1546 | } |
| 1547 | |
| 1548 | |
| 1549 | // Print error message for a completely unknown command switch. |
no test coverage detected