From 007e4b5490d258e9fccd8e751b258ef848f7f861 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 5 Jan 2018 12:18:32 +0100 Subject: [PATCH] manager: make use of NEWLINE macro where appropriate --- src/core/manager.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/manager.c b/src/core/manager.c index 07809fea9c7..6f50b177e01 100644 --- a/src/core/manager.c +++ b/src/core/manager.c @@ -1886,7 +1886,7 @@ static void manager_invoke_notify_message(Manager *m, Unit *u, pid_t pid, const assert(u); assert(buf); - tags = strv_split(buf, "\n\r"); + tags = strv_split(buf, NEWLINE); if (!tags) { log_oom(); return; -- 2.47.3