summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2018-08-07 22:48:58 +0200
committerKarolin Seeger <kseeger@samba.org>2018-08-23 10:38:27 +0200
commitc45fb4b658890f03a045519f95df160f27f96183 (patch)
treec09f99baed6428c29f9b154ed4597ba2837cd926
parentc57c54eb52d6611e67559aec5df5539c0fd2a300 (diff)
downloadsamba-c45fb4b658890f03a045519f95df160f27f96183.tar.gz
smbd: Align integer types
BUG: https://bugzilla.samba.org/show_bug.cgi?id=13553 Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
-rw-r--r--source3/smbd/nttrans.c2
1 files changed, 1 insertions, 1 deletions
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");