From: Lennart Poettering Date: Tue, 19 Sep 2023 14:24:23 +0000 (+0200) Subject: scope: add trailing comma to array initialization X-Git-Tag: v255-rc1~489^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fff7c34ce740f88b995a18a26749214807a8ef38;p=thirdparty%2Fsystemd.git scope: add trailing comma to array initialization --- diff --git a/src/core/scope.c b/src/core/scope.c index eb3ffba084d..d8860a6da1c 100644 --- a/src/core/scope.c +++ b/src/core/scope.c @@ -29,7 +29,7 @@ static const UnitActiveState state_translation_table[_SCOPE_STATE_MAX] = { [SCOPE_ABANDONED] = UNIT_ACTIVE, [SCOPE_STOP_SIGTERM] = UNIT_DEACTIVATING, [SCOPE_STOP_SIGKILL] = UNIT_DEACTIVATING, - [SCOPE_FAILED] = UNIT_FAILED + [SCOPE_FAILED] = UNIT_FAILED, }; static int scope_dispatch_timer(sd_event_source *source, usec_t usec, void *userdata);