| 1549 | // Print error message for a completely unknown command switch. |
| 1550 | |
| 1551 | void ErrorSwitch(CONST char *szOpt) |
| 1552 | { |
| 1553 | char sz[cchSzDef]; |
| 1554 | |
| 1555 | sprintf(sz, "Unknown switch '%s'", szOpt); |
| 1556 | PrintError(sz); |
| 1557 | } |
| 1558 | |
| 1559 | |
| 1560 | // Print error message for a unknown command subswitch. |
no test coverage detected