Skip to content

Commit

Permalink
redeclared variable error fixed (#3629)
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhamfuloria authored Jul 17, 2023
1 parent 54bce14 commit 10d1cd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pjsip-apps/src/vidgui/vidgui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -658,7 +658,7 @@ static void simple_registrar(pjsip_rx_data *rdata)
srv->hvalue = pj_str((char*)"pjsua simple registrar");
pjsip_msg_add_hdr(tdata->msg, (pjsip_hdr*)srv);

pj_status_t status = pjsip_endpt_send_response2(pjsua_get_pjsip_endpt(),
status = pjsip_endpt_send_response2(pjsua_get_pjsip_endpt(),
rdata, tdata, NULL, NULL);
if (status != PJ_SUCCESS) pjsip_tx_data_dec_ref(tdata);
}
Expand Down

0 comments on commit 10d1cd9

Please sign in to comment.