Fix fix of mac build breakage at 2a2a6aa

TBR=thestig@chromium.org

Review URL: https://codereview.chromium.org/1293153003 .
diff --git a/core/src/fxge/apple/fx_mac_imp.cpp b/core/src/fxge/apple/fx_mac_imp.cpp
index 8a39db6..465dd96 100644
--- a/core/src/fxge/apple/fx_mac_imp.cpp
+++ b/core/src/fxge/apple/fx_mac_imp.cpp
@@ -66,7 +66,7 @@
     return GetFont(face);
   }
   auto it = m_FontList.find(face);
-  if (it != m_FontList.end)
+  if (it != m_FontList.end())
     return it->second;
 
   if (charset == FXFONT_ANSI_CHARSET && (pitch_family & FXFONT_FF_FIXEDPITCH)) {
@@ -89,7 +89,7 @@
       face = "LiSong Pro Light";
   }
   it = m_FontList.Lookup(face);
-  if (it != m_FontList.end)
+  if (it != m_FontList.end())
     return it->second;
 
   return NULL;