From: Liyang Date: Wed, 17 Oct 2018 15:26:04 +0000 (+0800) Subject: missing comma X-Git-Tag: v1.8.3~1^2~1^2~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=69252d9911f346e474214f32f888827143b2b8f8;p=thirdparty%2Ffreeswitch.git missing comma https://freeswitch.org/jira/browse/FS-11465 --- diff --git a/src/include/test/switch_test.h b/src/include/test/switch_test.h index 0fdac14bc0..ac3f20fea9 100644 --- a/src/include/test/switch_test.h +++ b/src/include/test/switch_test.h @@ -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); \