diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2018-11-11 16:25:43 -0500 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2018-11-11 16:25:43 -0500 |
commit | e88d47b7f2f9aee5b0b3cdc0b8f708884175a71f (patch) | |
tree | b606f3d448243b793d54db4e992584a4fc7c57b9 | |
parent | 55c66c7c56c1ecd493f51fe66fd434b28addfb41 (diff) |
Minor
-rw-r--r-- | src/hb-face.cc | 2 | ||||
-rw-r--r-- | src/hb-face.hh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/hb-face.cc b/src/hb-face.cc index 952e6a6a..da73433c 100644 --- a/src/hb-face.cc +++ b/src/hb-face.cc @@ -96,7 +96,7 @@ DEFINE_NULL_INSTANCE (hb_face_t) = #undef HB_SHAPER_IMPLEMENT }, - HB_ATOMIC_PTR_INIT (nullptr), /* shape_plans */ + /* Zero for the rest is fine. */ }; diff --git a/src/hb-face.hh b/src/hb-face.hh index 726f6883..5d22f4ad 100644 --- a/src/hb-face.hh +++ b/src/hb-face.hh @@ -54,7 +54,7 @@ struct hb_face_t struct hb_shaper_data_t shaper_data; /* Various shaper data. */ - hb_ot_face_t table; + hb_ot_face_t table; /* All the face's tables. */ /* Cache */ struct plan_node_t |