From f00de059ddcdc4252b313b4194bc9fdd4b053c38 Mon Sep 17 00:00:00 2001 From: Liong Sauw Ming Date: Thu, 2 Jan 2014 01:25:22 +0000 Subject: Re #1630 (misc): Fixed documentation of pjsip_generic_int_hdr git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@4700 74dad513-b988-da41-8d7b-12977e46ad98 --- pjsip/include/pjsip/sip_msg.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pjsip/include/pjsip/sip_msg.h b/pjsip/include/pjsip/sip_msg.h index 40fae8bc..c8cb771f 100644 --- a/pjsip/include/pjsip/sip_msg.h +++ b/pjsip/include/pjsip/sip_msg.h @@ -1061,12 +1061,14 @@ PJ_DECL(void) pjsip_generic_string_hdr_init2(pjsip_generic_string_hdr *h, /* **************************************************************************/ /** - * Generic SIP header, which contains hname and a string hvalue. + * Generic SIP header, which contains hname and an integer ivalue. */ typedef struct pjsip_generic_int_hdr { - PJSIP_DECL_HDR_MEMBER(struct pjsip_generic_int_hdr); /**< Standard header field. */ - pj_int32_t ivalue; /**< ivalue */ + /** Standard header field. */ + PJSIP_DECL_HDR_MEMBER(struct pjsip_generic_int_hdr); + /** ivalue */ + pj_int32_t ivalue; } pjsip_generic_int_hdr; -- cgit v1.2.3