summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Koegel <eric.koegel@gmail.com>2015-06-28 08:18:26 +0300
committerEric Koegel <eric.koegel@gmail.com>2015-07-19 16:27:04 +0300
commit9fb870a3451c829641d917679f26192385b0380e (patch)
tree7fb3d6487a936f3fbb966e32b57741532e19294b
parente222c6f0535113997a7f5d9cc7cc5062733a0aa1 (diff)
downloadxfdesktop-9fb870a3451c829641d917679f26192385b0380e.tar.gz
trivial: fix signed/unsigned comparison
-rw-r--r--common/xfdesktop-common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/xfdesktop-common.c b/common/xfdesktop-common.c
index 1f180dff..33a70e5e 100644
--- a/common/xfdesktop-common.c
+++ b/common/xfdesktop-common.c
@@ -202,7 +202,7 @@ gchar*
xfdesktop_remove_whitspaces(gchar* str)
{
gchar* dest;
- gint offs, curr;
+ guint offs, curr;
g_return_val_if_fail(str, NULL);