From 956665413d6e943bde97fa98268e19ebca0000c7 Mon Sep 17 00:00:00 2001 From: George Rhoten Date: Tue, 25 Nov 2003 17:58:17 +0000 Subject: [PATCH] ICU-2403 Fix EBCDIC issues. X-SVN-Rev: 13880 --- icu4c/source/test/cintltst/tracetst.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icu4c/source/test/cintltst/tracetst.c b/icu4c/source/test/cintltst/tracetst.c index a0de676e2a..3d23abd10a 100644 --- a/icu4c/source/test/cintltst/tracetst.c +++ b/icu4c/source/test/cintltst/tracetst.c @@ -201,7 +201,7 @@ static void TestTraceAPI() { test_format("%vs", 100, 0, "s1\ns2\n[00000002]", __LINE__, a1, 2); test_format("%vs", 100, 4, " s1\n s2\n [00000002]", __LINE__, a1, 2); - test_format("%vb", 100, 0, "41 42 43 [00000003]", __LINE__, "ABC", 3); + test_format("%vb", 100, 0, "41 42 43 [00000003]", __LINE__, "\x41\x42\x43", 3); /* Null ptrs for strings, vectors */ test_format("Null string - %s", 50, 0, "Null string - *NULL*", __LINE__, NULL);