woops, i shouldnt be so presumtuous? about what the error will be

This commit is contained in:
Glenn L McGrath 2001-05-07 01:40:59 +00:00
parent 3aae10014c
commit 1b62619446
2 changed files with 2 additions and 2 deletions

View File

@ -395,7 +395,7 @@ extern int mount_main(int argc, char **argv)
if (optind + 1 < argc) {
if (realpath(argv[optind + 1], directory) == NULL) {
perror_msg_and_die("Invalid directory %s", directory);
perror_msg_and_die("%s", directory);
}
}

View File

@ -395,7 +395,7 @@ extern int mount_main(int argc, char **argv)
if (optind + 1 < argc) {
if (realpath(argv[optind + 1], directory) == NULL) {
perror_msg_and_die("Invalid directory %s", directory);
perror_msg_and_die("%s", directory);
}
}