From: Zbigniew Jędrzejewski-Szmek Date: Fri, 27 Mar 2026 08:17:51 +0000 (+0100) Subject: shared/verbs: extend comment X-Git-Tag: v261-rc1~612^2~10 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=805d3f5c53298dd14770f40d4315f6c0d5ebbadb;p=thirdparty%2Fsystemd.git shared/verbs: extend comment This was suggested in one of the reviews but I forgot to push the change. --- diff --git a/src/shared/verbs.h b/src/shared/verbs.h index 6b380041b81..cd18359cd75 100644 --- a/src/shared/verbs.h +++ b/src/shared/verbs.h @@ -52,7 +52,8 @@ typedef struct { #define VERB_NOARG(d, v, h) \ VERB(d, v, /* a= */ NULL, /* amin= */ VERB_ANY, /* amax= */ 1, /* f= */ 0, h) -/* Magic entry in the table (which will not be returned) that designates the start of the group . */ +/* Magic entry in the table (which will not be returned) that designates the start of the group . + * The macro works as a separator between groups and must be between other VERB* stanzas. */ #define VERB_GROUP(gr) \ _VERB_DATA(/* d= */ NULL, /* v= */ gr, /* a= */ NULL, /* amin= */ 0, /* amax= */ 0, \ /* f= */ VERB_GROUP_MARKER, /* dat= */ 0, /* h= */ NULL)