| commit | 04d28d94e576aab099891e6736fd0088dfac3366 | [log] [tgz] |
|---|---|---|
| author | psykose <alice@ayaya.dev> | Mon Aug 01 07:45:25 2022 +0000 |
| committer | Behdad Esfahbod <behdad@behdad.org> | Mon Aug 01 11:48:57 2022 -0600 |
| tree | 9001de0e8d41a30755df4386f3c9bde33e588e74 | |
| parent | f1f2be776bcd994fa9262622e1a7098a066e5cf7 [diff] |
[repacker] fix signedness of char in tests
diff --git a/src/test-repacker.cc b/src/test-repacker.cc index 053c0c6..1b7e1f0 100644 --- a/src/test-repacker.cc +++ b/src/test-repacker.cc
@@ -112,9 +112,9 @@ hb_serialize_context_t* c) { char lookup[] = { - 0, type, // type + 0, (char)type, // type 0, 0, // flag - 0, num_subtables, // num subtables + 0, (char)num_subtables, // num subtables }; start_object (lookup, 6, c);