summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2008-08-28 10:41:29 +0000
committerBenny Prijono <bennylp@teluu.com>2008-08-28 10:41:29 +0000
commit6306133a89d163c30a07852b2877732699bdac6e (patch)
treece8c19ba759390ea24a7b5a8692c78c5fbb1ad42
parentda05ae3130c87a6f10f3cece97d60c635277d1f5 (diff)
Fixed unused parameter warning in active socket test
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@2251 74dad513-b988-da41-8d7b-12977e46ad98
-rw-r--r--pjlib/src/pjlib-test/activesock.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/pjlib/src/pjlib-test/activesock.c b/pjlib/src/pjlib-test/activesock.c
index 2eedca0a..1051b870 100644
--- a/pjlib/src/pjlib-test/activesock.c
+++ b/pjlib/src/pjlib-test/activesock.c
@@ -318,6 +318,8 @@ static pj_bool_t tcp_on_data_sent(pj_activesock_t *asock,
{
struct tcp_state *st=(struct tcp_state*)pj_activesock_get_user_data(asock);
+ PJ_UNUSED_ARG(op_key);
+
st->sent = 1;
if (sent < 1) {