missing comma

https://freeswitch.org/jira/browse/FS-11465
This commit is contained in:
Liyang 2018-10-17 23:26:04 +08:00 committed by Chris Rienzo
parent b53d1caea0
commit 69252d9911
1 changed files with 1 additions and 1 deletions

View File

@ -721,7 +721,7 @@ static void fst_init_core_and_modload(const char *confdir, const char *basedir,
#define fst_xml_body(body) \
if (fst_tag_body) { \
fst_xml_stream.write_function(&fst_xml_stream "%s", body); \
fst_xml_stream.write_function(&fst_xml_stream, "%s", body); \
} else { \
fst_tag_body = 1; \
fst_xml_stream.write_function(&fst_xml_stream, ">%s", body); \