Fix typo
This commit is contained in:
parent
a98b9ca8dc
commit
4b6b1bc47a
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ char *argv[];
|
||||||
if (errno == EINVAL)
|
if (errno == EINVAL)
|
||||||
std_err("umount: Device not mounted\n");
|
std_err("umount: Device not mounted\n");
|
||||||
else if (errno == ENOTBLK)
|
else if (errno == ENOTBLK)
|
||||||
std_err("unount: Not a mountpoint\n");
|
std_err("umount: Not a mountpoint\n");
|
||||||
else
|
else
|
||||||
perror("umount");
|
perror("umount");
|
||||||
exit(1);
|
exit(1);
|
||||||
|
|
Loading…
Reference in a new issue