From 1289aa50602c1baa7facefca88afda983d653406 Mon Sep 17 00:00:00 2001 From: Chris Rienzo Date: Tue, 16 Feb 2016 15:47:54 -0500 Subject: [PATCH] FS-8838 [mod_rayo] fix syntax error in previous commit --- src/mod/event_handlers/mod_rayo/rayo_output_component.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); }