chiark / gitweb /
tree-wide: remove useless NULLs from strjoina
[elogind.git] / src / shared / bus-util.c
index 94872a31c4603377f707fd9d6967dcb1c1380d74..c8092e0e586f3619704d841452ba04854efd70eb 100644 (file)
@@ -2053,8 +2053,8 @@ static void log_job_error_with_service_result(const char* service, const char *r
                 _cleanup_free_ char *t;
 
                 t = strv_join((char**) extra_args, " ");
-                systemctl = strjoina("systemctl ", t ?: "<args>", NULL);
-                journalctl = strjoina("journalctl ", t ?: "<args>", NULL);
+                systemctl = strjoina("systemctl ", t ? : "<args>");
+                journalctl = strjoina("journalctl ", t ? : "<args>");
         }
 
         if (!isempty(result)) {