aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authorpcadach <pcadach@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-28 15:56:21 +0000
committerpcadach <pcadach@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-28 15:56:21 +0000
commite59c32a71a06652a9d56fa54e9351b05f52a8c11 (patch)
treed950e6de39c323482694968a5b52776bcd897f61 /channels
parent8d91b416f6395b5d9f82186f542fc9536a9fd737 (diff)
Fix compiler warning
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@43877 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/h323/ast_h323.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/h323/ast_h323.cxx b/channels/h323/ast_h323.cxx
index ebd551606..7a86c5b81 100644
--- a/channels/h323/ast_h323.cxx
+++ b/channels/h323/ast_h323.cxx
@@ -1042,7 +1042,7 @@ static BOOL EmbedQSIGTunneledInfo(H323SignalPDU &pdu)
for (int i = 0; i < protos.GetSize(); ++i)
{
if ((protos[i].GetTag() == H225_TunnelledProtocol_id::e_tunnelledProtocolObjectID) &&
- (((const PASN_ObjectId &)protos[i]).AsString() == OID_QSIG)) {
+ (((PASN_ObjectId &)protos[i]).AsString() == OID_QSIG)) {
addQSIG = FALSE;
break;
}