Silence gcc -Wsign-compare (no real change)

This commit is contained in:
Hallvard Furuseth 2010-11-22 13:45:11 +00:00
parent e1469fff44
commit 0ab060091e

View File

@ -131,7 +131,8 @@ static struct berval* select_value(
{
struct berval* ber1, *ber2;
MatchingRule *mr = key->sk_ordering;
int i, cmp;
unsigned i;
int cmp;
ber1 = &(attr->a_nvals[0]);
ber2 = ber1+1;