From 0964cfb0bd12c05912e69518f134c9e9cd6b1df9 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 20 Sep 2023 09:39:12 +0200 Subject: [PATCH] service: use empty_to_na() where appropriate --- src/core/service.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/service.c b/src/core/service.c index 65278dae4ae..c87870d8dae 100644 --- a/src/core/service.c +++ b/src/core/service.c @@ -4404,7 +4404,7 @@ static void service_notify_message( _cleanup_free_ char *cc = NULL; cc = strv_join(tags, ", "); - log_unit_debug(u, "Got notification message from PID "PID_FMT" (%s)", ucred->pid, isempty(cc) ? "n/a" : cc); + log_unit_debug(u, "Got notification message from PID "PID_FMT" (%s)", ucred->pid, empty_to_na(cc)); } /* Interpret MAINPID= */ -- 2.47.3