From 6001366aac1d8e8076866bc838ff5b7b07fa4f28 Mon Sep 17 00:00:00 2001 From: Rohit Nirmal Date: Fri, 2 Oct 2015 20:34:32 -0500 Subject: [PATCH] Alsa: Silence -Wsign-compare warning. --- Source/Core/AudioCommon/AlsaSoundStream.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/AudioCommon/AlsaSoundStream.h b/Source/Core/AudioCommon/AlsaSoundStream.h index 53053debeb..721fbbd43b 100644 --- a/Source/Core/AudioCommon/AlsaSoundStream.h +++ b/Source/Core/AudioCommon/AlsaSoundStream.h @@ -60,6 +60,6 @@ private: std::mutex cv_m; snd_pcm_t *handle; - int frames_to_deliver; + unsigned int frames_to_deliver; #endif };