summaryrefslogtreecommitdiff
path: root/voice_engine/test/auto_test/voe_extended_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'voice_engine/test/auto_test/voe_extended_test.cc')
-rw-r--r--voice_engine/test/auto_test/voe_extended_test.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/voice_engine/test/auto_test/voe_extended_test.cc b/voice_engine/test/auto_test/voe_extended_test.cc
index 209ff205..90d12d6b 100644
--- a/voice_engine/test/auto_test/voe_extended_test.cc
+++ b/voice_engine/test/auto_test/voe_extended_test.cc
@@ -169,7 +169,7 @@ void XRTPObserver::OnIncomingCSRCChanged(const int /*channel*/, const unsigned i
const bool /*added*/) {
}
-void XRTPObserver::OnIncomingSSRCChanged(const int /*channel*/, const unsigned int SSRC) {
+void XRTPObserver::OnIncomingSSRCChanged(const int /*channel*/, unsigned int SSRC) {
// char msg[128];
// sprintf(msg, "OnIncomingSSRCChanged(channel=%d, SSRC=%lu)\n",
// channel, SSRC);
@@ -199,7 +199,7 @@ int VoEExtendedTest::TestPassed(const char* str) const {
return 0;
}
-void VoEExtendedTest::OnPeriodicDeadOrAlive(const int /*channel*/, const bool alive) {
+void VoEExtendedTest::OnPeriodicDeadOrAlive(const int /*channel*/, bool alive) {
_alive = alive;
if (alive) {
TEST_LOG("=> ALIVE ");
@@ -209,7 +209,7 @@ void VoEExtendedTest::OnPeriodicDeadOrAlive(const int /*channel*/, const bool al
fflush(NULL);
}
-void VoEExtendedTest::CallbackOnError(const int errCode, int) {
+void VoEExtendedTest::CallbackOnError(int errCode, int) {
_errCode = errCode;
TEST_LOG("\n************************\n");
TEST_LOG(" RUNTIME ERROR: %d \n", errCode);