1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

Fix an implicit cast warning.

Michael
(This used to be commit 4ab3b23a63)
This commit is contained in:
Michael Adam 2007-11-16 00:34:37 +01:00
parent 68be9a8200
commit 3f437f681a

View File

@ -684,7 +684,7 @@ static char *validate_group(char *group, DATA_BLOB password,int snum)
}
list_len++;
member_list = SMB_MALLOC(list_len);
member_list = (char *)SMB_MALLOC(list_len);
if (!member_list) {
endgrent();
return NULL;