0001-Add-missing-semicolon-to-fix-build-with-icu-65.1.patch 1004 B

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