From be0e44365c0e16ffd087bb0cf1ca1fc35e4935c8 Mon Sep 17 00:00:00 2001 From: Zhouyj_zju Date: Wed, 7 Dec 2022 10:57:02 +0800 Subject: [PATCH] Description: fix the cpp check IssueNo: https://gitee.com/openharmony/graphic_ui/issues/I650F5 Feature or Bugfix: Bugfix Binary Source:No Signed-off-by: zhouyj --- frameworks/font/ui_line_break.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frameworks/font/ui_line_break.cpp b/frameworks/font/ui_line_break.cpp index 8a2750b..e30f46a 100644 --- a/frameworks/font/ui_line_break.cpp +++ b/frameworks/font/ui_line_break.cpp @@ -102,8 +102,9 @@ void UILineBreakEngine::LoadRule() stateTbl_ = reinterpret_cast(reinterpret_cast(rbbidh) + rbbidh->fFTable); status = U_ZERO_ERROR; lineBreakTrie_ = reinterpret_cast(ucptrie_openFromBinary(UCPTRIE_TYPE_FAST, UCPTRIE_VALUE_BITS_8, - reinterpret_cast(rbbidh) + rbbidh->fTrie, - rbbidh->fTrieLen, nullptr, &status)); + reinterpret_cast(rbbidh) + + rbbidh->fTrie, + rbbidh->fTrieLen, nullptr, &status)); if (status != U_ZERO_ERROR) { return; } -- GitLab