From 3a1b4a1940e1b319507dcf46f8ab5a7d5f32c0ef Mon Sep 17 00:00:00 2001 From: Rhodri James Date: Wed, 23 Aug 2017 11:56:41 +0100 Subject: [PATCH] Fix test_alloc_long_notation() to work in UTF-16 builds --- expat/tests/runtests.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/expat/tests/runtests.c b/expat/tests/runtests.c index 923b4278..460bab50 100644 --- a/expat/tests/runtests.c +++ b/expat/tests/runtests.c @@ -10405,8 +10405,8 @@ START_TEST(test_alloc_long_notation) "]>\n" "&e2;"; ExtOption options[] = { - { "foo", "Entity Foo" }, - { "bar", "Entity Bar" }, + { XCS("foo"), "Entity Foo" }, + { XCS("bar"), "Entity Bar" }, { NULL, NULL } }; int i;