summaryrefslogtreecommitdiff
path: root/pjsip/src/test-pjsip/regc_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'pjsip/src/test-pjsip/regc_test.c')
-rw-r--r--pjsip/src/test-pjsip/regc_test.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/pjsip/src/test-pjsip/regc_test.c b/pjsip/src/test-pjsip/regc_test.c
index a9629739..95cc5f95 100644
--- a/pjsip/src/test-pjsip/regc_test.c
+++ b/pjsip/src/test-pjsip/regc_test.c
@@ -580,7 +580,7 @@ static int update_test(const pj_str_t *registrar_uri)
ret = -630;
goto on_return;
}
- if (h1->next == (pjsip_contact_hdr*)&tdata->msg->hdr)
+ if ((void*)h1->next == (void*)&tdata->msg->hdr)
h2 = NULL;
else
h2 = (pjsip_contact_hdr*)
@@ -590,7 +590,7 @@ static int update_test(const pj_str_t *registrar_uri)
goto on_return;
}
/* must not have other Contact header */
- if (h2->next != (pjsip_contact_hdr*)&tdata->msg->hdr &&
+ if ((void*)h2->next != (void*)&tdata->msg->hdr &&
pjsip_msg_find_hdr(tdata->msg, PJSIP_H_CONTACT, h2->next) != NULL)
{
ret = -645;
@@ -660,7 +660,7 @@ static int update_test(const pj_str_t *registrar_uri)
ret = -730;
goto on_return;
}
- if (h1->next == (pjsip_contact_hdr*)&tdata->msg->hdr)
+ if ((void*)h1->next == (void*)&tdata->msg->hdr)
h2 = NULL;
else
h2 = (pjsip_contact_hdr*)
@@ -670,7 +670,7 @@ static int update_test(const pj_str_t *registrar_uri)
goto on_return;
}
/* must not have other Contact header */
- if (h2->next != (pjsip_contact_hdr*)&tdata->msg->hdr &&
+ if ((void*)h2->next != (void*)&tdata->msg->hdr &&
pjsip_msg_find_hdr(tdata->msg, PJSIP_H_CONTACT, h2->next) != NULL)
{
ret = -745;