summaryrefslogtreecommitdiffstats
path: root/libraries/libfreehand/Add-missing-semicolon-to-fix-build-with-icu-65.1.patch
diff options
context:
space:
mode:
author Matteo Bernardini2020-10-26 22:06:13 +0100
committer Matteo Bernardini2020-10-26 22:06:13 +0100
commite640e49a5bd5cb8a3b272af2d38aa2c5d9993949 (patch)
treeefdec9a92e47f20efe8b45860584319c9fac9a8c /libraries/libfreehand/Add-missing-semicolon-to-fix-build-with-icu-65.1.patch
parent41fa52299e271fdd4909b298cd0348f5f01986ea (diff)
downloadslackbuilds-current-20201026.1.tar.gz
20201026.1 global branch merge.current-20201026.1
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'libraries/libfreehand/Add-missing-semicolon-to-fix-build-with-icu-65.1.patch')
-rw-r--r--libraries/libfreehand/Add-missing-semicolon-to-fix-build-with-icu-65.1.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/libraries/libfreehand/Add-missing-semicolon-to-fix-build-with-icu-65.1.patch b/libraries/libfreehand/Add-missing-semicolon-to-fix-build-with-icu-65.1.patch
new file mode 100644
index 0000000000..2a904e4fb7
--- /dev/null
+++ b/libraries/libfreehand/Add-missing-semicolon-to-fix-build-with-icu-65.1.patch
@@ -0,0 +1,29 @@
+From af3197f795625f5188602073205a34369698b6df Mon Sep 17 00:00:00 2001
+From: Heiko Becker <heirecka@exherbo.org>
+Date: Fri, 4 Oct 2019 01:46:12 +0200
+Subject: [PATCH] Add missing semicolon to fix build with icu 65.1
+
+Change-Id: I7a0b0d600e9f7770245a7485813a944bfac4f088
+Reviewed-on: https://gerrit.libreoffice.org/80224
+Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
+Tested-by: Miklos Vajna <vmiklos@collabora.com>
+---
+ src/lib/libfreehand_utils.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/lib/libfreehand_utils.cpp b/src/lib/libfreehand_utils.cpp
+index 439c457..32f23e0 100644
+--- a/src/lib/libfreehand_utils.cpp
++++ b/src/lib/libfreehand_utils.cpp
+@@ -162,7 +162,7 @@ void libfreehand::_appendUTF16(librevenge::RVNGString &text, std::vector<unsigne
+ 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);
+--
+2.23.0
+