From ba6e66bff1684c0ef0af603f18b0ca53ed7c45fd Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Tue, 14 Jun 2011 16:18:45 -0400 Subject: [PATCH] Don't compare unsigned numbers with 0 It does not work. --- gio/gdbusaddress.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gio/gdbusaddress.c b/gio/gdbusaddress.c index f0cb1b6..45d6fd0 100644 --- a/gio/gdbusaddress.c +++ b/gio/gdbusaddress.c @@ -580,7 +580,7 @@ g_dbus_address_connect (const gchar *address_entry, { const gchar *s; const gchar *host; - guint port; + glong port; gchar *endp; gboolean is_nonce; -- 2.7.4