summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRichard Hughes <richard@hughsie.com>2008-12-03 08:42:07 +0000
committerRichard Hughes <richard@hughsie.com>2008-12-03 08:42:07 +0000
commit564dcb41c52e144d0f5a2ff6fd43c60d0d5c8a12 (patch)
tree588ab9249a09f25000e643e42a9c1e9a00ca177e /src
parent269d3abc8beb5ffb3f475097297bee4d5a6757f6 (diff)
trivial: egg updates
Diffstat (limited to 'src')
-rw-r--r--src/egg-string.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/egg-string.c b/src/egg-string.c
index 33df11e..2e860df 100644
--- a/src/egg-string.c
+++ b/src/egg-string.c
@@ -189,10 +189,8 @@ egg_strlen (const gchar *text, guint len)
gboolean
egg_strequal (const gchar *id1, const gchar *id2)
{
- if (id1 == NULL || id2 == NULL) {
- egg_debug ("string compare invalid '%s' and '%s'", id1, id2);
+ if (id1 == NULL || id2 == NULL)
return FALSE;
- }
return (strcmp (id1, id2) == 0);
}