Index: third_party/harfbuzz-ng/src/hb-ot-maxp-table.hh |
diff --git a/third_party/harfbuzz-ng/src/hb-ot-maxp-table.hh b/third_party/harfbuzz-ng/src/hb-ot-maxp-table.hh |
index 0d9a0fa1d8711a0b6f31ac21af452fc159862283..27105af13262ca0abb26dcf3bdbdf70efb22b9ca 100644 |
--- a/third_party/harfbuzz-ng/src/hb-ot-maxp-table.hh |
+++ b/third_party/harfbuzz-ng/src/hb-ot-maxp-table.hh |
@@ -51,8 +51,9 @@ struct maxp |
inline bool sanitize (hb_sanitize_context_t *c) const |
{ |
TRACE_SANITIZE (this); |
- return TRACE_RETURN (c->check_struct (this) && |
- likely (version.major == 1 || (version.major == 0 && version.minor == 0x5000u))); |
+ return_trace (c->check_struct (this) && |
+ likely (version.major == 1 || |
+ (version.major == 0 && version.minor == 0x5000u))); |
} |
/* We only implement version 0.5 as none of the extra fields in version 1.0 are useful. */ |