summaryrefslogtreecommitdiff
path: root/test/cscodec-utf8.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/cscodec-utf8.c')
-rw-r--r--test/cscodec-utf8.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/cscodec-utf8.c b/test/cscodec-utf8.c
index 5d0580b..85d0443 100644
--- a/test/cscodec-utf8.c
+++ b/test/cscodec-utf8.c
@@ -38,6 +38,7 @@ static void *myrealloc(void *ptr, size_t len, void *pw)
int main(int argc, char **argv)
{
+ parserutils_charset_codec *codec;
line_ctx ctx;
if (argc != 3) {
@@ -49,10 +50,10 @@ int main(int argc, char **argv)
PARSERUTILS_OK);
assert(parserutils_charset_codec_create("NATS-SEFI-ADD",
- myrealloc, NULL) == NULL);
+ myrealloc, NULL, &codec) == PARSERUTILS_BADENCODING);
- ctx.codec = parserutils_charset_codec_create("UTF-8", myrealloc, NULL);
- assert(ctx.codec != NULL);
+ assert(parserutils_charset_codec_create("UTF-8", myrealloc, NULL,
+ &ctx.codec) == PARSERUTILS_OK);
ctx.buflen = parse_filesize(argv[2]);
if (ctx.buflen == 0)