Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Code Health (remove a compiler warning).
  • Loading branch information
gpshead committed Dec 2, 2023
commit 84d060f0af01c5e6e3392095e62be621f95704f3
2 changes: 1 addition & 1 deletion Modules/_posixsubprocess.c
Original file line number Diff line number Diff line change
Expand Up @@ -768,7 +768,7 @@ child_exec(char *const exec_array[],

#ifdef HAVE_SETGROUPS
if (extra_group_size >= 0) {
assert(extra_group_size == 0 && extra_groups == NULL || extra_group_size);
assert((extra_group_size == 0 && extra_groups == NULL) || extra_group_size);
POSIX_CALL(setgroups(extra_group_size, extra_groups));
}
#endif /* HAVE_SETGROUPS */
Expand Down