Display optional argument to RemoteCommand's usage output.

This commit is contained in:
Daniel Caujolle-Bert 2022-01-20 14:25:53 +01:00
parent e0adf4328b
commit a6b05aab5b
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ const unsigned int BUFFER_LENGTH = 100U;
int main(int argc, char** argv)
{
if (argc < 3) {
::fprintf(stderr, "Usage: RemoteCommand <port> <command>\n");
::fprintf(stderr, "Usage: RemoteCommand <port> <command> [argument]\n");
return 1;
}