Merge pull request #193 in FS/freeswitch from ~ARTURZ/freeswitch:FS-7296 to master

* commit '2c8e9c80ce74191e5815a859a2fc6bc038cbabd7':
  Fix SIP_PAYLOAD_INIT2 macro in sip_header.h
This commit is contained in:
Mike Jerris 2015-02-18 12:24:35 -06:00
commit 6082e1dff5
1 changed files with 1 additions and 1 deletions

View File

@ -317,7 +317,7 @@ sip_payload_t *sip_payload_create(su_home_t *, void const *data, isize_t len);
* @HIDE
*/
#define SIP_PAYLOAD_INIT2(data, length) \
{{{ 0, 0, sip_payload_class, data, length }, NULL, data, length }}
{{{ 0, 0, sip_payload_class, data, length }}, NULL, data, length }
/** Create a SIP separator line structure. */
SOFIAPUBFUN sip_separator_t *sip_separator_create(su_home_t *home);