Skip to content

Commit

Permalink
Bug 1408582 - Fix unused variable warning in CSFLog.cpp on Android; r…
Browse files Browse the repository at this point in the history
…=drno

MozReview-Commit-ID: 2PZyw40eMaF
  • Loading branch information
dminor committed Oct 16, 2017
1 parent 3ecd8e7 commit 901cc29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions media/webrtc/signaling/src/common/browser_logging/CSFLog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,6 @@ void CSFLog( CSFLogLevel priority, const char* sourceFile, int sourceLine, const

int CSFLogTestLevel(CSFLogLevel priority)
{
mozilla::LogLevel level = static_cast<mozilla::LogLevel>(priority);
return MOZ_LOG_TEST(gSignalingLog, level);
return MOZ_LOG_TEST(gSignalingLog,
static_cast<mozilla::LogLevel>(priority));
}

0 comments on commit 901cc29

Please sign in to comment.