summaryrefslogtreecommitdiff
path: root/test/iterate.c
diff options
context:
space:
mode:
authorSteven G. Johnson <stevenj@mit.edu>2015-10-31 18:13:25 -0400
committerSteven G. Johnson <stevenj@mit.edu>2015-10-31 18:13:25 -0400
commita5c9de204717d619ddb2fa4eb994542bb3cfc157 (patch)
treedcb694a5b28a802e119c46f7bf8c2a62b45a462d /test/iterate.c
parentf67f1a72f7bbaac8dbf08a183193ac82641cd34b (diff)
parentb10b64dc10fc4c5ca236e85a620ee78e503e201c (diff)
downloadlibutf8proc-a5c9de204717d619ddb2fa4eb994542bb3cfc157.tar.gz
libutf8proc-a5c9de204717d619ddb2fa4eb994542bb3cfc157.tar.bz2
Merge pull request #58 from petercolberg/master
Fix build warnings
Diffstat (limited to 'test/iterate.c')
-rw-r--r--test/iterate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/iterate.c b/test/iterate.c
index cd68a52..30b307d 100644
--- a/test/iterate.c
+++ b/test/iterate.c
@@ -8,7 +8,7 @@ static int error;
#define CHECKVALID(pos, val, len) buf[pos] = val; testbytes(buf,len,len,__LINE__)
#define CHECKINVALID(pos, val, len) buf[pos] = val; testbytes(buf,len,UTF8PROC_ERROR_INVALIDUTF8,__LINE__)
-void testbytes(unsigned char *buf, int len, utf8proc_ssize_t retval, int line)
+static void testbytes(unsigned char *buf, int len, utf8proc_ssize_t retval, int line)
{
utf8proc_int32_t out[16];
utf8proc_ssize_t ret;