From: Volker Lendecke Date: Thu, 29 Aug 2024 14:41:21 +0000 (+0200) Subject: libndr: Align an integer type X-Git-Tag: tdb-1.4.13~1228 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=10df1b9600603924dca18a5ede8d33ead854ce79;p=thirdparty%2Fsamba.git libndr: Align an integer type Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- diff --git a/librpc/ndr/ndr_sec_helper.c b/librpc/ndr/ndr_sec_helper.c index 1a156b01d40..028d11c2a83 100644 --- a/librpc/ndr/ndr_sec_helper.c +++ b/librpc/ndr/ndr_sec_helper.c @@ -210,7 +210,7 @@ size_t ndr_subcontext_size_of_ace_coda(const struct security_ace *ace, size_t ndr_size_security_acl(const struct security_acl *theacl, libndr_flags flags) { size_t ret; - int i; + uint32_t i; if (!theacl) return 0; ret = 8; for (i=0;inum_aces;i++) {