summaryrefslogtreecommitdiff
path: root/profiles/health
diff options
context:
space:
mode:
authorSzymon Janc <szymon.janc@tieto.com>2014-09-19 16:10:14 +0200
committerJohan Hedberg <johan.hedberg@intel.com>2014-09-24 21:31:13 +0300
commit0c7c4a6cc852dba0fa90a1af47a22e6256eef963 (patch)
treefdf164e678e3270dcc54dea992582642941b7223 /profiles/health
parent114b5a3fc7095515b798f7d08aaeb731fcb5383f (diff)
downloadbluez-0c7c4a6cc852dba0fa90a1af47a22e6256eef963.tar.gz
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
Diffstat (limited to 'profiles/health')
-rw-r--r--profiles/health/hdp.c2
1 files changed, 1 insertions, 1 deletions
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)