From 18f7251ad0dcaf938e9db2956a9c1d88ea7977b8 Mon Sep 17 00:00:00 2001 From: guenther <> Date: Thu, 22 May 2014 03:36:23 +0000 Subject: Make this build cleanly even with UTF8_{putc,getc} moved from the public header to the internal. Make some variables unsigned to eliminate some warnings --- src/regress/lib/libcrypto/utf8/utf8test.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/regress/lib/libcrypto/utf8/utf8test.c') diff --git a/src/regress/lib/libcrypto/utf8/utf8test.c b/src/regress/lib/libcrypto/utf8/utf8test.c index 453ab43a40..5da5709746 100644 --- a/src/regress/lib/libcrypto/utf8/utf8test.c +++ b/src/regress/lib/libcrypto/utf8/utf8test.c @@ -23,6 +23,7 @@ #include #include +#include "asn1_locl.h" /* peek into the internals */ #define UNCHANGED 0xfedcba98 @@ -39,7 +40,8 @@ main(void) unsigned char testbuf[] = "012345"; const unsigned char zerobuf[sizeof testbuf] = { 0 }; unsigned long value; - int i, j, k, l, ret; + unsigned int i, j, k, l; + int ret; /* * First, verify UTF8_getc() -- cgit v1.2.3-55-g6feb