commit | 56c467093598ec559a7148b61e112e9de52b7076 | [log] [tgz] |
---|---|---|
author | Behdad Esfahbod <behdad@behdad.org> | Tue Sep 20 17:39:54 2022 -0600 |
committer | Behdad Esfahbod <behdad@behdad.org> | Tue Sep 20 17:40:13 2022 -0600 |
tree | 8461565d64bc2281fce34409165fd73558036c47 | |
parent | c02a1a4adc3d3c02b3573a13d47e8381e3534c22 [diff] [blame] |
[subset] Fix compiler warning Fixes https://github.com/harfbuzz/harfbuzz/issues/3823
diff --git a/src/graph/graph.hh b/src/graph/graph.hh index 64878a8..e4a5d40 100644 --- a/src/graph/graph.hh +++ b/src/graph/graph.hh
@@ -70,8 +70,8 @@ { DEBUG_MSG (SUBSET_REPACK, nullptr, "vertex [%lu] bytes != [%lu] bytes, depth = %u", - table_size (), - other.table_size (), + (unsigned long) table_size (), + (unsigned long) other.table_size (), depth); auto a = as_bytes ();