summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLiong Sauw Ming <ming@teluu.com>2011-09-21 11:21:33 +0000
committerLiong Sauw Ming <ming@teluu.com>2011-09-21 11:21:33 +0000
commitf3b7770abb691cfa4fc39ec4a34337caa520bc36 (patch)
treea8d53672553c34e500e255e4d6e218fb3726ff2b
parent8a8b2bba54aedc161159225259b83e6d7c1d17b3 (diff)
Re #1266: Fixed build error in non-Windows platform.
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@3764 74dad513-b988-da41-8d7b-12977e46ad98
-rw-r--r--pjsip/include/pjsua-lib/pjsua_internal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/pjsip/include/pjsua-lib/pjsua_internal.h b/pjsip/include/pjsua-lib/pjsua_internal.h
index 2a2dc095..5c3dd34d 100644
--- a/pjsip/include/pjsua-lib/pjsua_internal.h
+++ b/pjsip/include/pjsua-lib/pjsua_internal.h
@@ -37,7 +37,7 @@ typedef struct pjsua_call_media pjsua_call_media;
/**
* Call's media stream.
*/
-typedef struct pjsua_call_media
+struct pjsua_call_media
{
pjsua_call *call; /**< Parent call. */
pjmedia_type type; /**< Media type. */
@@ -93,7 +93,7 @@ typedef struct pjsua_call_media
pj_status_t (*med_create_cb)(pjsua_call_media *call_med,
pj_status_t status, int security_level,
int *sip_err_code);
-} pjsua_call_media;
+};
/**
* Maximum number of SDP "m=" lines to be supported.