aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-embed.c
diff options
context:
space:
mode:
Diffstat (limited to 'embed/ephy-embed.c')
-rw-r--r--embed/ephy-embed.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/embed/ephy-embed.c b/embed/ephy-embed.c
index 98da57156..f3ac543a4 100644
--- a/embed/ephy-embed.c
+++ b/embed/ephy-embed.c
@@ -37,7 +37,6 @@
#include "nautilus-floating-bar.h"
#include <glib/gi18n.h>
-#include <string.h>
#include <webkit/webkit.h>
static void ephy_embed_constructed (GObject *object);
@@ -587,7 +586,7 @@ progress_update (EphyWebView *view, GParamSpec *pspec, EphyEmbed *embed)
}
uri = webkit_web_view_get_uri (priv->web_view);
- if (!uri || strcmp (uri, "about:blank") == 0)
+ if (!uri || g_str_equal (uri, "about:blank"))
return;
progress = webkit_web_view_get_progress (priv->web_view);