Blame SOURCES/0001-Add-missing-semicolon-to-fix-build-with-icu-65.1.patch

6734e9
From af3197f795625f5188602073205a34369698b6df Mon Sep 17 00:00:00 2001
6734e9
From: Heiko Becker <heirecka@exherbo.org>
6734e9
Date: Fri, 4 Oct 2019 01:46:12 +0200
6734e9
Subject: [PATCH] Add missing semicolon to fix build with icu 65.1
6734e9
6734e9
Change-Id: I7a0b0d600e9f7770245a7485813a944bfac4f088
6734e9
Reviewed-on: https://gerrit.libreoffice.org/80224
6734e9
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
6734e9
Tested-by: Miklos Vajna <vmiklos@collabora.com>
6734e9
---
6734e9
 src/lib/libfreehand_utils.cpp | 2 +-
6734e9
 1 file changed, 1 insertion(+), 1 deletion(-)
6734e9
6734e9
diff --git a/src/lib/libfreehand_utils.cpp b/src/lib/libfreehand_utils.cpp
6734e9
index 439c457..32f23e0 100644
6734e9
--- a/src/lib/libfreehand_utils.cpp
6734e9
+++ b/src/lib/libfreehand_utils.cpp
6734e9
@@ -162,7 +162,7 @@ void libfreehand::_appendUTF16(librevenge::RVNGString &text, std::vector
6734e9
   while (j < length)
6734e9
   {
6734e9
     UChar32 c;
6734e9
-    U16_NEXT(s, j, length, c)
6734e9
+    U16_NEXT(s, j, length, c);
6734e9
     unsigned char outbuf[U8_MAX_LENGTH+1];
6734e9
     int i = 0;
6734e9
     U8_APPEND_UNSAFE(&outbuf[0], i, c);
6734e9
-- 
6734e9
2.23.0
6734e9