From 0c7c4a6cc852dba0fa90a1af47a22e6256eef963 Mon Sep 17 00:00:00 2001 From: Szymon Janc Date: Fri, 19 Sep 2014 16:10:14 +0200 Subject: [PATCH] health: Use proper type for tid tid holds glib source id and should be of guint type. This fix following compilation error with musl: CC profiles/health/bluetoothd-hdp.o profiles/health/hdp.c:84:2: error: unknown type name 'uint' uint tid; /* echo timeout */ ^ Please enter the commit message for your changes. Lines starting --- profiles/health/hdp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/health/hdp.c b/profiles/health/hdp.c index d09bdd4c9..8ffcd9149 100644 --- a/profiles/health/hdp.c +++ b/profiles/health/hdp.c @@ -81,7 +81,7 @@ struct hdp_tmp_dc_data { struct hdp_echo_data { gboolean echo_done; /* Is a echo was already done */ gpointer buf; /* echo packet sent */ - uint tid; /* echo timeout */ + guint tid; /* echo timeout */ }; static struct hdp_channel *hdp_channel_ref(struct hdp_channel *chan) -- 2.11.0