From d7463dfea042efabee6e0b84a2639f8437cd0d05 Mon Sep 17 00:00:00 2001 From: Santiago Carot-Nemesio Date: Fri, 2 Dec 2011 11:56:33 +0100 Subject: [PATCH] hdp_types: Fix unappropiated field type for dbus watcher id This value is provided by g_dbus_add_disconnect_watch wich provides an unsigned type, not an integer one. --- health/hdp_types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/health/hdp_types.h b/health/hdp_types.h index eecc13842..9a6776f09 100644 --- a/health/hdp_types.h +++ b/health/hdp_types.h @@ -81,7 +81,7 @@ struct hdp_application { char *description; /* Options description for SDP record */ uint8_t id; /* The identification is also the mdepid */ char *oname; /* Name of the owner application */ - int dbus_watcher; /* Watch for clients disconnection */ + guint dbus_watcher; /* Watch for clients disconnection */ gint ref; /* Reference counter */ }; -- 2.47.3