From eff69daa691cbc51ec4fecdbcfe8cc1710bf8acc Mon Sep 17 00:00:00 2001 From: Daan De Meyer Date: Thu, 22 Sep 2022 14:42:00 +0200 Subject: [PATCH] systemctl: Fix style nit --- src/systemctl/systemctl-enable.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/systemctl/systemctl-enable.c b/src/systemctl/systemctl-enable.c index 730b4a494cd..7014f92736b 100644 --- a/src/systemctl/systemctl-enable.c +++ b/src/systemctl/systemctl-enable.c @@ -23,7 +23,7 @@ static int normalize_filenames(char **names) { "Non-absolute paths are not allowed when --root is used: %s", *u); - if (!strchr(*u,'/')) + if (!strchr(*u, '/')) return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Link argument must contain at least one directory separator.\n" "If you intended to link a file in the current directory, try ./%s instead.", -- 2.47.3