Skip to content

Commit

Permalink
Fix signed unsigned warning
Browse files Browse the repository at this point in the history
  • Loading branch information
daschuer committed Apr 23, 2022
1 parent e0b0630 commit 4a94f9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/soundproxy_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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());
}
}
Expand Down

0 comments on commit 4a94f9f

Please sign in to comment.