mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-14 17:13:40 +00:00
[subset/cff] Minor signedness change
This commit is contained in:
parent
887f299351
commit
6188a3f5a4
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ struct CFFIndex
|
|||
auto it = hb_iter (_);
|
||||
if (hb_len (it) == 1)
|
||||
{
|
||||
char *ret = c->allocate_size<char> (1, false);
|
||||
unsigned char *ret = c->allocate_size<unsigned char> (1, false);
|
||||
if (unlikely (!ret)) return_trace (false);
|
||||
*ret = *it;
|
||||
continue;
|
||||
|
|
Loading…
Add table
Reference in a new issue