From 6737231d9014bfac7449a8f683c1a72d2c9329ef Mon Sep 17 00:00:00 2001 From: Matthias Dieter Wallnöfer Date: Fri, 14 Jan 2011 09:38:41 +0100 Subject: ldb:ldb_dn.c - fix counter type in "ldb_dn_minimise" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Autobuild-User: Matthias Dieter Wallnöfer Autobuild-Date: Fri Jan 14 10:43:29 CET 2011 on sn-devel-104 --- source4/lib/ldb/common/ldb_dn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source4/lib/ldb/common/ldb_dn.c b/source4/lib/ldb/common/ldb_dn.c index d5442e410e..cd9055da92 100644 --- a/source4/lib/ldb/common/ldb_dn.c +++ b/source4/lib/ldb/common/ldb_dn.c @@ -2056,7 +2056,7 @@ int ldb_dn_update_components(struct ldb_dn *dn, const struct ldb_dn *ref_dn) */ bool ldb_dn_minimise(struct ldb_dn *dn) { - int i; + unsigned int i; if (!ldb_dn_validate(dn)) { return false; -- cgit