From: Brian West Date: Tue, 25 Oct 2016 17:39:38 +0000 (-0500) Subject: FS-9576 fix stray ; X-Git-Tag: v1.8.0~1153 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e76c94569337f4d0ce8012d883212fbbbe2778db;p=thirdparty%2Ffreeswitch.git FS-9576 fix stray ; --- diff --git a/src/switch_core_event_hook.c b/src/switch_core_event_hook.c index f96eaa97ec..5fa33b8bdc 100644 --- a/src/switch_core_event_hook.c +++ b/src/switch_core_event_hook.c @@ -40,8 +40,8 @@ NEW_HOOK_DECL(read_frame) NEW_HOOK_DECL(write_frame) NEW_HOOK_DECL(video_read_frame) NEW_HOOK_DECL(video_write_frame) -NEW_HOOK_DECL(text_read_frame); -NEW_HOOK_DECL(text_write_frame); +NEW_HOOK_DECL(text_read_frame) +NEW_HOOK_DECL(text_write_frame) NEW_HOOK_DECL(kill_channel) NEW_HOOK_DECL(send_dtmf) NEW_HOOK_DECL(recv_dtmf)