]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
fix windows warning for last commit
authorJeff Lenk <jeff@jefflenk.com>
Tue, 20 Dec 2011 20:18:30 +0000 (14:18 -0600)
committerJeff Lenk <jeff@jefflenk.com>
Tue, 20 Dec 2011 20:18:30 +0000 (14:18 -0600)
src/switch_core.c

index 85fd7bf5bd9c8dcc4a12a3a20af770bfc45970ec..e69d49f7ade027a167e7fa01a855d50e2d519d41 100644 (file)
@@ -2525,6 +2525,7 @@ SWITCH_DECLARE(int) switch_stream_system_fork(const char *cmd, switch_stream_han
 
 }
 
+#ifndef WIN32
 static int switch_stream_system_thread(const char *cmd, switch_stream_handle_t *stream)
 {
 #ifdef WIN32
@@ -2581,7 +2582,7 @@ static int switch_stream_system_thread(const char *cmd, switch_stream_handle_t *
 #endif
 
 }
-
+#endif
 
 SWITCH_DECLARE(int) switch_stream_system(const char *cmd, switch_stream_handle_t *stream)
 {