From deb5b03f7173c1875345c8fd248a85078c16dc9f Mon Sep 17 00:00:00 2001 From: bluhm <> Date: Mon, 6 Mar 2017 22:30:17 +0000 Subject: Use an unsigned loop variable to avoid a comparison between signed and unsigned. Makes the test compile again. OK inoguchi@ --- src/regress/lib/libcrypto/hmac/hmactest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/regress/lib/libcrypto/hmac/hmactest.c') diff --git a/src/regress/lib/libcrypto/hmac/hmactest.c b/src/regress/lib/libcrypto/hmac/hmactest.c index d5a00c8aac..ab75d3508c 100644 --- a/src/regress/lib/libcrypto/hmac/hmactest.c +++ b/src/regress/lib/libcrypto/hmac/hmactest.c @@ -319,7 +319,7 @@ end: static char * pt(unsigned char *md, unsigned int len) { - int i; + unsigned int i; static char buf[80]; for (i = 0; i < len; i++) -- cgit v1.2.3-55-g6feb