From: Volker Lendecke Date: Tue, 7 Aug 2018 20:48:58 +0000 (+0200) Subject: smbd: Align integer types X-Git-Tag: ldb-1.3.6~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c45fb4b658890f03a045519f95df160f27f96183;p=thirdparty%2Fsamba.git smbd: Align integer types BUG: https://bugzilla.samba.org/show_bug.cgi?id=13553 Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- diff --git a/source3/smbd/nttrans.c b/source3/smbd/nttrans.c index 5937380fb85..810f8b92b43 100644 --- a/source3/smbd/nttrans.c +++ b/source3/smbd/nttrans.c @@ -2301,7 +2301,7 @@ static enum ndr_err_code fill_qtlist_from_sids(TALLOC_CTX *mem_ctx, struct dom_sid *sids, uint32_t elems) { - int i; + uint32_t i; TALLOC_CTX *list_ctx = NULL; list_ctx = talloc_init("quota_sid_list");