From 8d19d8ce795fbc899f550a12b876cb5b8ec391c1 Mon Sep 17 00:00:00 2001 From: Mathieu Schroeter Date: Tue, 28 Feb 2017 21:54:42 +0100 Subject: [PATCH] Fix warning --- src/sound.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sound.cxx b/src/sound.cxx index c4f7d68..83aecf1 100644 --- a/src/sound.cxx +++ b/src/sound.cxx @@ -158,7 +158,7 @@ out: void CSound::FlushAll () { - for (int ch = 0; ch < sizeof (m_lpSDL); ++ch) + for (size_t ch = 0; ch < sizeof (m_lpSDL); ++ch) Flush (ch); }