Skip to content
Snippets Groups Projects
Commit ec3f1886 authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

Silence gcc -Wsign-compare (no real change)

parent 8a5b2f7a
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment