aboutsummaryrefslogtreecommitdiff
path: root/src/hb-ot-stat-table.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/hb-ot-stat-table.hh')
-rw-r--r--src/hb-ot-stat-table.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hb-ot-stat-table.hh b/src/hb-ot-stat-table.hh
index 59bb2dacc..af6d550c0 100644
--- a/src/hb-ot-stat-table.hh
+++ b/src/hb-ot-stat-table.hh
@@ -320,7 +320,7 @@ struct AxisValueFormat4
unsigned total_size = min_size + axisCount * AxisValueRecord::static_size;
auto *out = c->serializer->allocate_size<AxisValueFormat4> (total_size);
if (unlikely (!out)) return_trace (false);
- hb_memcpy (out, this, total_size);
+ memcpy (out, this, total_size);
return_trace (true);
}