From 9ca8214978246b07326973bc7534682bb27e7084 Mon Sep 17 00:00:00 2001 From: Matthias Dieter Wallnöfer Date: Sun, 19 Sep 2010 13:00:38 +0200 Subject: ldb:ldb_match.c - fix counter variable type Signed-off-by: Andrew Bartlett --- source4/lib/ldb/common/ldb_match.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4') diff --git a/source4/lib/ldb/common/ldb_match.c b/source4/lib/ldb/common/ldb_match.c index 74bc015d5a..869b3bd1c8 100644 --- a/source4/lib/ldb/common/ldb_match.c +++ b/source4/lib/ldb/common/ldb_match.c @@ -433,7 +433,7 @@ int ldb_match_msg(struct ldb_context *ldb, int ldb_match_msg_objectclass(const struct ldb_message *msg, const char *objectclass) { - int i; + unsigned int i; struct ldb_message_element *el = ldb_msg_find_element(msg, "objectClass"); if (!el) { return 0; -- cgit