summaryrefslogtreecommitdiff
path: root/src/tmpfiles
diff options
context:
space:
mode:
authorJan Janssen <medhefgo@web.de>2022-08-29 13:43:29 +0200
committerJan Janssen <medhefgo@web.de>2022-08-30 12:03:33 +0200
commit2676befc73b3f40974ddad84972e873e5b826262 (patch)
tree77963e05083cb3bdc3359b18351f4300c4fddbae /src/tmpfiles
parent63b98386392d2b1e686523e75d46a11facd8cb70 (diff)
downloadsystemd-2676befc73b3f40974ddad84972e873e5b826262.tar.gz
tree-wide: Fix a some remaining format warnings by casting
Diffstat (limited to 'src/tmpfiles')
-rw-r--r--src/tmpfiles/tmpfiles.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c
index 8012d0d5df..93b29e2edb 100644
--- a/src/tmpfiles/tmpfiles.c
+++ b/src/tmpfiles/tmpfiles.c
@@ -3107,7 +3107,13 @@ static int parse_line(
case RELABEL_PATH:
case RECURSIVE_RELABEL_PATH:
if (i.argument)
- log_syntax(NULL, LOG_WARNING, fname, line, 0, "%c lines don't take argument fields, ignoring.", i.type);
+ log_syntax(NULL,
+ LOG_WARNING,
+ fname,
+ line,
+ 0,
+ "%c lines don't take argument fields, ignoring.",
+ (char) i.type);
break;