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