Commit 58da04b2 authored by Dmitry Shulga's avatar Dmitry Shulga

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()
parent 79f6f0c4
......@@ -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;
}
"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment