mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Fix cp(1) error message.
This commit is contained in:
parent
f0ae50e35d
commit
e88a3ef654
1 changed files with 1 additions and 1 deletions
|
@ -537,7 +537,7 @@ int main(int argc, char* argv[])
|
||||||
{
|
{
|
||||||
if ( i + 1 == argc )
|
if ( i + 1 == argc )
|
||||||
{
|
{
|
||||||
error(0, 0, "option '--target-directory 'requires an argument");
|
error(0, 0, "option '--target-directory' requires an argument");
|
||||||
fprintf(stderr, "Try '%s --help' for more information\n", argv0);
|
fprintf(stderr, "Try '%s --help' for more information\n", argv0);
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue