From bfd31db9a9ea167650b109362f3a03cb64ff774e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Matthias=20Dieter=20Walln=C3=B6fer?= Date: Fri, 5 Mar 2010 08:47:48 +0100 Subject: [PATCH] s4:torture/winbind/struct_based.c - fix up (un)signedness of a function argument Otherwise always a warning is generated. --- source4/torture/winbind/struct_based.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source4/torture/winbind/struct_based.c b/source4/torture/winbind/struct_based.c index 5a621bc7724..99b08283197 100644 --- a/source4/torture/winbind/struct_based.c +++ b/source4/torture/winbind/struct_based.c @@ -636,7 +636,8 @@ static bool torture_winbind_struct_list_users(struct torture_context *torture) return true; } -static bool get_group_list(struct torture_context *torture, int *num_entries, +static bool get_group_list(struct torture_context *torture, + unsigned int *num_entries, char ***groups) { struct winbindd_request req; -- 2.34.1