summaryrefslogtreecommitdiff
path: root/pjsip/include/pjsip/sip_msg.h
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2006-02-07 20:56:50 +0000
committerBenny Prijono <bennylp@teluu.com>2006-02-07 20:56:50 +0000
commit15a3a4d1c1f53411688c9aa25f29641c370e4d8a (patch)
tree9c8dc3f120d204052d172ff4ac6d8270c611370e /pjsip/include/pjsip/sip_msg.h
parent977f5f3b80ea2ba93b544ebf92def456bbaba8a7 (diff)
Updated Makefile for cygwin/mingw build and fix misc warnings
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@145 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjsip/include/pjsip/sip_msg.h')
-rw-r--r--pjsip/include/pjsip/sip_msg.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/pjsip/include/pjsip/sip_msg.h b/pjsip/include/pjsip/sip_msg.h
index e67d015d..a6a1d656 100644
--- a/pjsip/include/pjsip/sip_msg.h
+++ b/pjsip/include/pjsip/sip_msg.h
@@ -72,12 +72,12 @@ typedef enum pjsip_method_e
* member will always contain a valid method string regardless whether the ID
* is recognized or not.
*/
-typedef struct pjsip_method
+struct pjsip_method
{
pjsip_method_e id; /**< Method ID, from \a pjsip_method_e. */
pj_str_t name; /**< Method name, which will always contain the
method string. */
-} pjsip_method;
+};
/*