From: Chris Rienzo Date: Tue, 16 Feb 2016 20:47:54 +0000 (-0500) Subject: FS-8838 [mod_rayo] fix syntax error in previous commit X-Git-Tag: v1.6.7~2^2~84 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1289aa50602c1baa7facefca88afda983d653406;p=thirdparty%2Ffreeswitch.git FS-8838 [mod_rayo] fix syntax error in previous commit --- diff --git a/src/mod/event_handlers/mod_rayo/rayo_output_component.c b/src/mod/event_handlers/mod_rayo/rayo_output_component.c index 6d1f018b80..dfa9a923a2 100644 --- a/src/mod/event_handlers/mod_rayo/rayo_output_component.c +++ b/src/mod/event_handlers/mod_rayo/rayo_output_component.c @@ -1254,7 +1254,7 @@ SWITCH_STANDARD_API(fileman_api) } switch_mutex_unlock(fileman_globals.mutex); } else { - switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_INFO, "fileman API failed for ID %s\n", zstr(id) : "" : id); + switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_INFO, "fileman API failed for ID %s\n", zstr(id) ? "" : id); switch_mutex_unlock(fileman_globals.mutex); stream->write_function(stream, "-ERR file handle not found\n"); }