Skip to content
Permalink
Browse files
MDEV-23926: Follow-up patch
This patch fixes incorrect argument type passed
to the last parameter of getgrouplist() in cmake
macros CHECK_C_SOURCE_COMPILES()
  • Loading branch information
dmitryshulga committed Oct 23, 2020
1 parent 79f6f0c commit 58da04b
Showing 1 changed file with 1 addition and 1 deletion.
@@ -21,7 +21,7 @@ int main() {
char *arg_1;
gid_t arg_2, arg_3;
int arg_4;
(void)getgrouplist(arg_1,arg_2,&arg_3,arg_4);
(void)getgrouplist(arg_1,arg_2,&arg_3,&arg_4);
return 0;
}
"

0 comments on commit 58da04b

Please sign in to comment.