From: Volker Lendecke Date: Fri, 4 May 2018 19:02:41 +0000 (+0200) Subject: idmap_hash: Align integer types X-Git-Tag: tevent-0.9.37~264 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ea50825acf10cd528238b09eecf945d61a4a99aa;p=thirdparty%2Fsamba.git idmap_hash: Align integer types Loop-variable and bound should be the same type Signed-off-by: Volker Lendecke Reviewed-by: Andreas Schneider --- diff --git a/source3/winbindd/idmap_hash/idmap_hash.c b/source3/winbindd/idmap_hash/idmap_hash.c index 589027154d4..0f4b0b8b064 100644 --- a/source3/winbindd/idmap_hash/idmap_hash.c +++ b/source3/winbindd/idmap_hash/idmap_hash.c @@ -110,7 +110,7 @@ static NTSTATUS idmap_hash_initialize(struct idmap_domain *dom) NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL; struct winbindd_tdc_domain *dom_list = NULL; size_t num_domains = 0; - int i; + size_t i; DBG_ERR("The idmap_hash module is deprecated and should not be used. " "Please migrate to a different plugin. This module will be "