diff options
Diffstat (limited to 'embed/ephy-permission-manager.c')
-rw-r--r-- | embed/ephy-permission-manager.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/embed/ephy-permission-manager.c b/embed/ephy-permission-manager.c index 7d7626cb7..c06f11107 100644 --- a/embed/ephy-permission-manager.c +++ b/embed/ephy-permission-manager.c @@ -34,7 +34,7 @@ ephy_permission_info_get_type (void) { static GType type = 0; - if (type == 0) + if (G_UNLIKELY (type == 0)) { type = g_boxed_type_register_static ("EphyPermissionInfo", (GBoxedCopyFunc) ephy_permission_info_copy, @@ -109,7 +109,7 @@ ephy_permission_manager_get_type (void) { static GType type = 0; - if (type == 0) + if (G_UNLIKELY (type == 0)) { static const GTypeInfo our_info = { |