Skip to content

Commit

Permalink
[core] Fixed unused vars in CChannel
Browse files Browse the repository at this point in the history
  • Loading branch information
maxsharabayko authored and rndi committed Sep 13, 2019
1 parent 62ac8f1 commit 24f3d6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions srtcore/channel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ void CChannel::setIpToS(int tos)

#endif

int CChannel::ioctlQuery(int type) const
int CChannel::ioctlQuery(int SRT_ATR_UNUSED type) const
{
#ifdef unix
int value = 0;
Expand All @@ -391,7 +391,7 @@ int CChannel::ioctlQuery(int type) const
return -1;
}

int CChannel::sockoptQuery(int level, int option) const
int CChannel::sockoptQuery(int SRT_ATR_UNUSED level, int SRT_ATR_UNUSED option) const
{
#ifdef unix
int value = 0;
Expand Down

0 comments on commit 24f3d6d

Please sign in to comment.