[font] Fix unlikely
diff --git a/src/hb-ot-font.cc b/src/hb-ot-font.cc
index 944f5b7..36575cf 100644
--- a/src/hb-ot-font.cc
+++ b/src/hb-ot-font.cc
@@ -92,7 +92,7 @@
     cmap_cache = (hb_ot_font_cmap_cache_t *) hb_malloc (sizeof (hb_ot_font_cmap_cache_t));
     if (unlikely (!cmap_cache)) goto out;
     cmap_cache->init ();
-    if (!unlikely (hb_face_set_user_data (font->face,
+    if (unlikely (!hb_face_set_user_data (font->face,
 					  &hb_ot_font_cmap_cache_user_data_key,
 					  cmap_cache,
 					  hb_free,