From df05f0880f5043a904979f5aef69c704150c1155 Mon Sep 17 00:00:00 2001 From: Tristan Matthews Date: Thu, 11 Jul 2013 14:58:45 -0400 Subject: [PATCH] sdp: fix warning if compiling without video support --- daemon/src/sip/sdp.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/daemon/src/sip/sdp.cpp b/daemon/src/sip/sdp.cpp index 1436af130..3c066ce8e 100644 --- a/daemon/src/sip/sdp.cpp +++ b/daemon/src/sip/sdp.cpp @@ -765,6 +765,8 @@ bool Sdp::getOutgoingVideoSettings(map &args) const } return true; } +#else + (void) args; #endif return false; }