ostree-prepare-root: Fix typo in error message

Closes: #403
Approved by: cgwalters
This commit is contained in:
William Manley 2016-07-26 18:05:25 +01:00 committed by Atomic Bot
parent 6356edaaba
commit 78f99d4780
1 changed files with 1 additions and 1 deletions

View File

@ -222,7 +222,7 @@ main(int argc, char *argv[])
/* Make deploy_path a bind mount, so we can move it later */ /* Make deploy_path a bind mount, so we can move it later */
if (mount (deploy_path, deploy_path, NULL, MS_BIND, NULL) < 0) if (mount (deploy_path, deploy_path, NULL, MS_BIND, NULL) < 0)
{ {
perrorv ("failed to initial bind mount %s", deploy_path); perrorv ("failed to make initial bind mount %s", deploy_path);
exit (EXIT_FAILURE); exit (EXIT_FAILURE);
} }