Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
MertGunduz committed Nov 17, 2023
1 parent c9332c5 commit 51e8325
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/msg/one_arg_err_msg.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@

void one_arg_err_msg(char *option)
{
fprintf(stderr, "sub64: \"%s\" is a one parameter/argument using command in sub64. Please delete the second value and try again.\n", option);
fprintf(stderr, "sub64: \"%s\" is a one parameter/argument using command in sub64.\n", option);
fprintf(stderr, "sub64: prompt \"man sub64\" or \"sub64 --help\" to read the user manual.\n");
}
2 changes: 1 addition & 1 deletion src/msg/val_err_msg.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@

void vall_err_msg(char *option)
{
fprintf(stderr, "sub64: \"%s\" is a two parameter command, please use command in the requested format by adding second value.\n", option);
fprintf(stderr, "sub64: \"%s\" is a two parameter command, please use command in the requested format.\n", option);
fprintf(stderr, "sub64: prompt \"man sub64\" or \"sub64 --help\" to read the user manual.\n");
}

0 comments on commit 51e8325

Please sign in to comment.