From: William Manley Date: Tue, 26 Jul 2016 16:53:53 +0000 (+0100) Subject: ostree-prepare-root: Make error message capitalisation consistent X-Git-Tag: archive/raspbian/2022.1-3+rpi1~1^2~4^2~49^2~29 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=6356edaaba5e9443e9034d74550237f4f7c6991d;p=ostree.git 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 --- 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); } }