Fixed mismatched between declaration and definition of pj_stun_msg_encode() (thanks Samuel Vinson)

git-svn-id: https://svn.pjsip.org/repos/pjproject/trunk@1995 74dad513-b988-da41-8d7b-12977e46ad98
This commit is contained in:
Benny Prijono 2008-06-07 09:22:25 +00:00
parent 2bfc3d8d0a
commit 70656cb965
1 changed files with 2 additions and 2 deletions

View File

@ -2189,8 +2189,8 @@ static char *print_binary(const pj_uint8_t *data, unsigned data_len)
* Print the message structure to a buffer.
*/
PJ_DEF(pj_status_t) pj_stun_msg_encode(pj_stun_msg *msg,
pj_uint8_t *buf, unsigned buf_size,
pj_size_t options,
pj_uint8_t *buf, pj_size_t buf_size,
unsigned options,
const pj_str_t *key,
pj_size_t *p_msg_len)
{