From cf1c898e95fae5095c813bf2d6e3b076f2f3c005 Mon Sep 17 00:00:00 2001 From: Nicolas Williams Date: Mon, 18 Jul 2011 22:49:50 -0500 Subject: [PATCH] Undo a s/size_t/int/. Iterators must be unsigned. --- lib/hdb/hdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/hdb/hdb.c b/lib/hdb/hdb.c index aff576a30..5dc5a0957 100644 --- a/lib/hdb/hdb.c +++ b/lib/hdb/hdb.c @@ -169,7 +169,7 @@ void hdb_free_entry(krb5_context context, hdb_entry_ex *ent) { Key *k; - int i; + size_t i; if (ent->free_entry) (*ent->free_entry)(context, ent);