From: Todd C. Miller Date: Tue, 24 Apr 2018 22:40:16 +0000 (-0600) Subject: Fix compilation error with older Sun Studio compilers. X-Git-Tag: SUDO_1_8_23^2~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f53e5e2bdf69a0adc1526684492f8866d66d95d0;p=sudo Fix compilation error with older Sun Studio compilers. --- diff --git a/plugins/sudoers/cvtsudoers_json.c b/plugins/sudoers/cvtsudoers_json.c index ea3954c56..504e80aff 100644 --- a/plugins/sudoers/cvtsudoers_json.c +++ b/plugins/sudoers/cvtsudoers_json.c @@ -512,7 +512,7 @@ static void print_member_json(FILE *fp, struct member *m, enum word_type word_type, bool last_one, int indent, bool expand_aliases) { - return print_member_json_int(fp, m->name, m->type, m->negated, word_type, + print_member_json_int(fp, m->name, m->type, m->negated, word_type, last_one, indent, expand_aliases); }