]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
mdssvc: Align an integer type
authorVolker Lendecke <vl@samba.org>
Thu, 12 Feb 2026 19:31:19 +0000 (20:31 +0100)
committerVolker Lendecke <vl@samba.org>
Sun, 1 Mar 2026 20:19:35 +0000 (20:19 +0000)
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Anoop C S <anoopcs@samba.org>
source3/rpc_server/mdssvc/mdssvc.c

index d2286819eca48948e6672a086f4f6d1d46e1a9aa..0c15f978454299c9563b82548b3060c042d5f667 100644 (file)
@@ -241,7 +241,7 @@ static int cnid_comp_fn(const void *p1, const void *p2)
 static bool sort_cnids(struct sl_query *slq, const DALLOC_CTX *d)
 {
        uint64_t *cnids = NULL;
-       int i;
+       size_t i;
        const void *p;
 
        cnids = talloc_array(slq, uint64_t, dalloc_size(d));