[Freeswitch-svn] [commit] r5418 - freeswitch/trunk/src/mod/endpoints/mod_wanpipe
Freeswitch SVN
mikej at freeswitch.org
Wed Jun 20 07:02:45 EDT 2007
Author: mikej
Date: Wed Jun 20 07:02:45 2007
New Revision: 5418
Modified:
freeswitch/trunk/src/mod/endpoints/mod_wanpipe/mod_wanpipe.c
Log:
fix for new switch_log_printf prototype
Modified: freeswitch/trunk/src/mod/endpoints/mod_wanpipe/mod_wanpipe.c
==============================================================================
--- freeswitch/trunk/src/mod/endpoints/mod_wanpipe/mod_wanpipe.c (original)
+++ freeswitch/trunk/src/mod/endpoints/mod_wanpipe/mod_wanpipe.c Wed Jun 20 07:02:45 2007
@@ -222,7 +222,7 @@
va_start(ap, fmt);
if ((ret = switch_vasprintf(&data, fmt, ap)) != -1) {
- switch_log_printf(SWITCH_CHANNEL_ID_LOG, file, func, line, level, "%s", data);
+ switch_log_printf(SWITCH_CHANNEL_ID_LOG, file, func, line, NULL, level, "%s", data);
}
va_end(ap);
}
More information about the Freeswitch-svn
mailing list