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()
This commit is contained in:
Dmitry Shulga 2020-10-23 19:15:22 +07:00
commit 58da04b261

View file

@ -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;
}
"