summaryrefslogtreecommitdiffstats
path: root/libreoffice/build/patches/libfreehand_icu_65.1.patch
blob: 0a80a46e600134da46bbee904eb172df5e10bdf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Add missing semicolon to fix build with icu 65.1

--- src/lib/libfreehand_utils.cpp.orig	2019-10-08 21:05:45.546891345 +0200
+++ src/lib/libfreehand_utils.cpp	2019-10-08 21:06:34.700922635 +0200
@@ -162,7 +162,7 @@
   while (j < length)
   {
     UChar32 c;
-    U16_NEXT(s, j, length, c)
+    U16_NEXT(s, j, length, c);
     unsigned char outbuf[U8_MAX_LENGTH+1];
     int i = 0;
     U8_APPEND_UNSAFE(&outbuf[0], i, c);