summaryrefslogtreecommitdiff
path: root/test/normtest.c
diff options
context:
space:
mode:
authorTony Kelman <tony@kelman.net>2015-04-06 22:36:33 -0700
committerTony Kelman <tony@kelman.net>2015-04-06 22:36:33 -0700
commit0a818c700353194d85baaf6a2f7f6ea32686b922 (patch)
tree859d990277010fe6fa5d7d3e3ed53081cbee9388 /test/normtest.c
parentad277229234b77ac3d334860f6857921060dcb37 (diff)
downloadlibutf8proc-0a818c700353194d85baaf6a2f7f6ea32686b922.tar.gz
libutf8proc-0a818c700353194d85baaf6a2f7f6ea32686b922.tar.bz2
Prefix other C99 typedefs with utf8proc_
Diffstat (limited to 'test/normtest.c')
-rw-r--r--test/normtest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/normtest.c b/test/normtest.c
index 7add4c6..555c14c 100644
--- a/test/normtest.c
+++ b/test/normtest.c
@@ -1,7 +1,7 @@
#include "tests.h"
#define CHECK_NORM(NRM, norm, src) { \
- char *src_norm = (char*) utf8proc_ ## NRM((uint8_t*) src); \
+ char *src_norm = (char*) utf8proc_ ## NRM((utf8proc_uint8_t*) src); \
check(!strcmp(norm, src_norm), \
"normalization failed for %s -> %s", src, norm); \
free(src_norm); \