summaryrefslogtreecommitdiff
path: root/src/switchroot
diff options
context:
space:
mode:
authorWilliam Manley <will@williammanley.net>2016-07-26 17:53:53 +0100
committerAtomic Bot <atomic-devel@projectatomic.io>2016-08-02 19:07:25 +0000
commit6356edaaba5e9443e9034d74550237f4f7c6991d (patch)
treeb158cc9bb767da4e0a46157a4ecd54cf4486b577 /src/switchroot
parent485a374b2175a9a7dcb64889eb0acc10cb8bf3e4 (diff)
downloadostree-6356edaaba5e9443e9034d74550237f4f7c6991d.tar.gz
ostree-prepare-root: Make error message capitalisation consistent
There seemed to be more lower case first letters so I've standardised on that. Closes: #403 Approved by: cgwalters
Diffstat (limited to 'src/switchroot')
-rw-r--r--src/switchroot/ostree-prepare-root.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/switchroot/ostree-prepare-root.c b/src/switchroot/ostree-prepare-root.c
index 0d5ba35e..f469a1b9 100644
--- a/src/switchroot/ostree-prepare-root.c
+++ b/src/switchroot/ostree-prepare-root.c
@@ -215,7 +215,7 @@ main(int argc, char *argv[])
* https://bugzilla.redhat.com/show_bug.cgi?id=847418 */
if (mount (NULL, "/", NULL, MS_REC|MS_PRIVATE, NULL) < 0)
{
- perrorv ("Failed to make \"/\" private mount: %m");
+ perrorv ("failed to make \"/\" private mount: %m");
exit (EXIT_FAILURE);
}
@@ -272,7 +272,7 @@ main(int argc, char *argv[])
{
if (mount (".", ".", NULL, MS_REMOUNT | MS_SILENT, NULL) < 0)
{
- perrorv ("Failed to remount rootfs writable (for overlayfs)");
+ perrorv ("failed to remount rootfs writable (for overlayfs)");
exit (EXIT_FAILURE);
}
}