From: Lennart Poettering Date: Wed, 20 Sep 2023 07:39:12 +0000 (+0200) Subject: service: use empty_to_na() where appropriate X-Git-Tag: v255-rc1~481 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0964cfb0bd12c05912e69518f134c9e9cd6b1df9;p=thirdparty%2Fsystemd.git service: use empty_to_na() where appropriate --- 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= */