From: <s-v...@us...> - 2013-12-21 17:34:44
|
Revision: 240 http://sourceforge.net/p/turnserver/code/240 Author: s-vincent Date: 2013-12-21 17:34:42 +0000 (Sat, 21 Dec 2013) Log Message: ----------- Fixes Debian/kFreeBSD compilation. Modified Paths: -------------- trunk/src/turnserver.c Modified: trunk/src/turnserver.c =================================================================== --- trunk/src/turnserver.c 2013-09-03 16:26:29 UTC (rev 239) +++ trunk/src/turnserver.c 2013-12-21 17:34:42 UTC (rev 240) @@ -1357,9 +1357,9 @@ } #else /* avoid compilation warning */ - optval = 0; - optlen = 0; - save_val = 0; + (void)optval; + (void)optlen; + (void)save_val; #endif } @@ -1551,9 +1551,9 @@ } #else /* avoid compilation warning */ - optval = 0; - optlen = 0; - save_val = 0; + (void)optval; + (void)optlen; + (void)save_val; if(message->dont_fragment) { @@ -3762,9 +3762,9 @@ } } #else - optlen = 0; - optval = 0; - save_val = 0; + (void)optlen; + (void)optval; + (void)save_val; #endif nb = turn_udp_send(desc->tuple_sock, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |