summaryrefslogtreecommitdiff
path: root/test/tests.h
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/tests.h
parentad277229234b77ac3d334860f6857921060dcb37 (diff)
downloadlibutf8proc-0a818c700353194d85baaf6a2f7f6ea32686b922.tar.gz
libutf8proc-0a818c700353194d85baaf6a2f7f6ea32686b922.tar.bz2
Prefix other C99 typedefs with utf8proc_
Diffstat (limited to 'test/tests.h')
-rw-r--r--test/tests.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tests.h b/test/tests.h
index d4897f8..c27185d 100644
--- a/test/tests.h
+++ b/test/tests.h
@@ -47,7 +47,7 @@ size_t encode(char *dest, const char *buf)
}
check(sscanf(buf + i, "%x", &c) == 1, "invalid hex input %s", buf+i);
i = j; /* skip to char after hex input */
- d += utf8proc_encode_char(c, (uint8_t *) (dest + d));
+ d += utf8proc_encode_char(c, (utf8proc_uint8_t *) (dest + d));
} while (1);
}