silence compiler warning

(cherry picked from commit b14c6a1caf)
This commit is contained in:
Mark Andrews 2013-12-10 07:13:03 +11:00
parent cc35438d96
commit 131333682c

View file

@ -1229,7 +1229,7 @@ der_put_oid(unsigned char *p, size_t len,
unsigned char *base = p;
size_t n;
for (n = data->length - 1; n >= 2; --n) {
for (n = data->length - 1; n >= 2u; --n) {
unsigned u = data->components[n];
if (len < 1U)