diff options
Diffstat (limited to 'embed/ephy-password-manager.c')
-rw-r--r-- | embed/ephy-password-manager.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/embed/ephy-password-manager.c b/embed/ephy-password-manager.c index c0f1e7838..6a8c3e34e 100644 --- a/embed/ephy-password-manager.c +++ b/embed/ephy-password-manager.c @@ -34,7 +34,7 @@ ephy_password_info_get_type (void) { static GType type = 0; - if (type == 0) + if (G_UNLIKELY (type == 0)) { type = g_boxed_type_register_static ("EphyPasswordInfo", (GBoxedCopyFunc) ephy_password_info_copy, @@ -113,7 +113,7 @@ ephy_password_manager_get_type (void) { static GType type = 0; - if (type == 0) + if (G_UNLIKELY (type == 0)) { static const GTypeInfo our_info = { |