From 75e79ca54866ae41107607ebe4427a5bad2a499b Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 4 Oct 2018 17:12:25 +0200 Subject: [PATCH] tdb: Align integer types Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- lib/tdb/common/freelist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tdb/common/freelist.c b/lib/tdb/common/freelist.c index 86fac2ff078..a19289a399c 100644 --- a/lib/tdb/common/freelist.c +++ b/lib/tdb/common/freelist.c @@ -605,7 +605,7 @@ tdb_off_t tdb_allocate(struct tdb_context *tdb, int hash, tdb_len_t length, struct tdb_record *rec) { tdb_off_t ret; - int i; + uint32_t i; if (tdb->max_dead_records == 0) { /* -- 2.34.1