chiark / gitweb /
tree-wide: drop NULL sentinel from strjoin
[elogind.git] / src / login / logind-session.c
index b8071264b9533e9d6eac985d8e0d9a969189f31f..9123d50fac012d0e9a24666316ae5c145ebc0608 100644 (file)
@@ -512,7 +512,7 @@ static int session_start_scope(Session *s) {
                 char *scope, *job = NULL;
                 const char *description;
 
-                scope = strjoin("session-", s->id, ".scope", NULL);
+                scope = strjoin("session-", s->id, ".scope");
                 if (!scope)
                         return log_oom();