summaryrefslogtreecommitdiff
path: root/pjnath
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2008-06-07 09:22:25 +0000
committerBenny Prijono <bennylp@teluu.com>2008-06-07 09:22:25 +0000
commit204c24947f4f98d6d24a432d89024f8c0cdf2ca9 (patch)
tree49194a91441225e37f0234ee3f528ab3ea8cacc5 /pjnath
parentd53940d1861712b7ff526c7536c40bb32fc33c45 (diff)
Fixed mismatched between declaration and definition of pj_stun_msg_encode() (thanks Samuel Vinson)
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@1995 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjnath')
-rw-r--r--pjnath/src/pjnath/stun_msg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pjnath/src/pjnath/stun_msg.c b/pjnath/src/pjnath/stun_msg.c
index 97aaeb27..ad1e9a31 100644
--- a/pjnath/src/pjnath/stun_msg.c
+++ b/pjnath/src/pjnath/stun_msg.c
@@ -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)
{