mirror of
https://github.com/asterisk/asterisk.git
synced 2026-07-27 16:07:15 -07:00
simplify this code and eliminate the return value cast that is no longer necessary
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@101196 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
+1
-4
@@ -3261,10 +3261,7 @@ static int sip_sendhtml(struct ast_channel *chan, int subclass, const char *data
|
||||
/*! \brief Deliver SIP call ID for the call */
|
||||
static const char *sip_get_callid(struct ast_channel *chan)
|
||||
{
|
||||
struct sip_pvt *p = chan->tech_pvt;
|
||||
if (!p)
|
||||
return "";
|
||||
return ((char *)p->callid);
|
||||
return chan->tech_pvt ? ((struct sip_pvt *) chan->tech_pvt)->callid : "";
|
||||
}
|
||||
|
||||
/*! \brief Send SIP MESSAGE text within a call
|
||||
|
||||
Reference in New Issue
Block a user