From a4446b10bfe0a9e7236bf941fa69a96697939e11 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Mon, 3 Jun 2013 18:39:14 -0400 Subject: [PATCH] Fix build for C89 compilers --- test/api/test-buffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/api/test-buffer.c b/test/api/test-buffer.c index 82fdaae..77fa786 100644 --- a/test/api/test-buffer.c +++ b/test/api/test-buffer.c @@ -704,7 +704,7 @@ static const utf16_conversion_test_t utf16_conversion_tests[] = { {{0x41, 0xD800, 0xDF02}, {-1}}, {{0x41, 0x61, 0xD800, 0xDF02}, {0x61, -1}}, {{0x41, 0xD800, 0x61, 0xDF02}, {-1, 0x61}}, - {{0x41, 0x61}, {}} + {{0x41, 0x61}, {0}} }; static void -- 2.7.4