summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorScott Mansell <phiren@gmail.com>2015-10-03 16:17:11 +1300
committerScott Mansell <phiren@gmail.com>2015-10-03 16:17:11 +1300
commitce6f89fe6dcfd7ea46c451bf8dbe84224443f765 (patch)
tree6a09262ae18f6018a767f4ea76151a36d89162f4 /Source/Core
parent37825c59dd0ee6225cce185b262a977747403536 (diff)
parent6001366aac1d8e8076866bc838ff5b7b07fa4f28 (diff)
Merge pull request #3122 from rohit-n/sign-compare
Alsa: Silence -Wsign-compare warning.
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/AudioCommon/AlsaSoundStream.h2
1 files changed, 1 insertions, 1 deletions
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
};