From 0cba195e7cdf91bed5f77cf8778c2c27ba698c12 Mon Sep 17 00:00:00 2001 From: Rhodri James Date: Wed, 23 Aug 2017 11:44:57 +0100 Subject: [PATCH] Fix test_alloc_set_base() to work for UTF-16 builds --- expat/tests/runtests.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/expat/tests/runtests.c b/expat/tests/runtests.c index bb033ac9..eb9da5b6 100644 --- a/expat/tests/runtests.c +++ b/expat/tests/runtests.c @@ -8817,7 +8817,7 @@ END_TEST /* Test robustness of XML_SetBase against a failing allocator */ START_TEST(test_alloc_set_base) { - const XML_Char *new_base = "/local/file/name.xml"; + const XML_Char *new_base = XCS("/local/file/name.xml"); int i; const int max_alloc_count = 5;