From 4a94f9fc230faf874796a86cc7612cc597add638 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Sat, 23 Apr 2022 12:53:07 +0200 Subject: [PATCH] Fix signed unsigned warning --- src/test/soundproxy_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/soundproxy_test.cpp b/src/test/soundproxy_test.cpp index b02f73ad0adc..4bf32ca4ca01 100644 --- a/src/test/soundproxy_test.cpp +++ b/src/test/soundproxy_test.cpp @@ -186,7 +186,7 @@ TEST_F(SoundSourceProxyTest, open) { continue; } EXPECT_LT(0, pAudioSource->getSignalInfo().getChannelCount()); - EXPECT_LT(0, pAudioSource->getSignalInfo().getSampleRate()); + EXPECT_LT(0u, pAudioSource->getSignalInfo().getSampleRate()); EXPECT_FALSE(pAudioSource->frameIndexRange().empty()); } }