From 78f99d4780dfe8a11e782465dc758d3c37513206 Mon Sep 17 00:00:00 2001 From: William Manley Date: Tue, 26 Jul 2016 18:05:25 +0100 Subject: [PATCH] ostree-prepare-root: Fix typo in error message Closes: #403 Approved by: cgwalters --- src/switchroot/ostree-prepare-root.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/switchroot/ostree-prepare-root.c b/src/switchroot/ostree-prepare-root.c index f469a1b9..895b2e51 100644 --- a/src/switchroot/ostree-prepare-root.c +++ b/src/switchroot/ostree-prepare-root.c @@ -222,7 +222,7 @@ main(int argc, char *argv[]) /* Make deploy_path a bind mount, so we can move it later */ 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); }