From: Yu Watanabe Date: Mon, 9 Jan 2023 01:58:10 +0000 (+0900) Subject: bootctl: fix indentation X-Git-Tag: v253-rc1~154^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a42909e60ca6add0c905490fa05fe63ae03115fd;p=thirdparty%2Fsystemd.git bootctl: fix indentation --- diff --git a/src/boot/bootctl-random-seed.c b/src/boot/bootctl-random-seed.c index 430bbeb33da..e512b9b68c9 100644 --- a/src/boot/bootctl-random-seed.c +++ b/src/boot/bootctl-random-seed.c @@ -39,7 +39,7 @@ static int set_system_token(void) { r = getenv_bool("SYSTEMD_WRITE_SYSTEM_TOKEN"); if (r < 0) { if (r != -ENXIO) - log_warning_errno(r, "Failed to parse $SYSTEMD_WRITE_SYSTEM_TOKEN, ignoring."); + log_warning_errno(r, "Failed to parse $SYSTEMD_WRITE_SYSTEM_TOKEN, ignoring."); } else if (r == 0) { log_notice("Not writing system token, because $SYSTEMD_WRITE_SYSTEM_TOKEN is set to false."); return 0;