summaryrefslogtreecommitdiffstats
path: root/audio
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2009-01-30 07:59:01 +0100
committerMarcel Holtmann <marcel@holtmann.org>2009-01-30 07:59:01 +0100
commitb47d1eeb490aa518b0bafb0fe5d968e4ef313e60 (patch)
tree4e389fd3da2adee9295e04d51af7425f291d9186 /audio
parent0260a8613bd992b596dfa0f2b69ecfbba33c9bca (diff)
Fix another signed/unsigned comparison warning
Diffstat (limited to 'audio')
-rw-r--r--audio/pcm_bluetooth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/pcm_bluetooth.c b/audio/pcm_bluetooth.c
index 53b6b6c8..dfdd1ef5 100644
--- a/audio/pcm_bluetooth.c
+++ b/audio/pcm_bluetooth.c
@@ -224,7 +224,7 @@ static void *playback_hw_thread(void *param)
/* Reset point of reference to avoid too big values
* that wont fit an unsigned int */
- if (delta.tv_sec < UINT_SECS_MAX)
+ if ((unsigned int) delta.tv_sec < UINT_SECS_MAX)
prev_periods = periods;
else {
prev_periods = 0;