Skip to content

Commit fdc6734

Browse files
Fix extra member in xlators/features/changelog/src/changelog-rpc.c
The "static struct rpcsvc_program *changelog_programs[]" includes an extra member by introducing a stray comma after "NULL". This commit fixes that by removing the stray comma. Signed-off-by: Thales Antunes de Oliveira Barretto <[email protected]>
1 parent a9f3973 commit fdc6734

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xlators/features/changelog/src/changelog-rpc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,5 +437,5 @@ static struct rpcsvc_program changelog_svc_prog = {
437437

438438
static struct rpcsvc_program *changelog_programs[] = {
439439
&changelog_svc_prog,
440-
NULL,
440+
NULL
441441
};

0 commit comments

Comments
 (0)