diff options
author | Caolán McNamara <caolanm@redhat.com> | 2022-09-09 11:06:35 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2022-09-09 13:41:24 +0200 |
commit | b711a008dfce399c03cd34272c37d7cc60f93363 (patch) | |
tree | 9dbc27d17b3a82bb582a3dcbca0bd72ba4f7f377 /vcl/source/fontsubset | |
parent | 3642db420a66133ebe4aabb346ce0adca17e26e6 (diff) |
ofz: Undefined-shift
Change-Id: Ida81135280ff61c3a8e96e8f5ed977959e169f61
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139716
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl/source/fontsubset')
-rw-r--r-- | vcl/source/fontsubset/sft.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/fontsubset/sft.cxx b/vcl/source/fontsubset/sft.cxx index 41918cb12e6f..93c09b31f0c5 100644 --- a/vcl/source/fontsubset/sft.cxx +++ b/vcl/source/fontsubset/sft.cxx @@ -1299,7 +1299,7 @@ SFErrCodes AbstractTrueTypeFont::indexGlyphData() if (!m_xCharMap.is()) { table = this->table(O_cmap, table_size); - m_bIsSymbolFont = HasSymbolCmap(reinterpret_cast<const char*>(table), table_size); + m_bIsSymbolFont = HasSymbolCmap(reinterpret_cast<const unsigned char*>(table), table_size); } return SFErrCodes::Ok; |