summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2014-02-05 05:49:13 +0000
committerBenny Prijono <bennylp@teluu.com>2014-02-05 05:49:13 +0000
commitfb57fd0035e2b3409bfe14cf130c20591d7768c9 (patch)
treeaf4d722e679bb3283706bba986be55fed660b7ca
parent0319fbf86e14b1a470652914835b6be668556b99 (diff)
Misc (re #1630): fixing gcc warning about variable set but unused
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@4731 74dad513-b988-da41-8d7b-12977e46ad98
-rw-r--r--pjmedia/src/pjmedia-audiodev/opensl_dev.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/pjmedia/src/pjmedia-audiodev/opensl_dev.c b/pjmedia/src/pjmedia-audiodev/opensl_dev.c
index a77340b4..a9dcd266 100644
--- a/pjmedia/src/pjmedia-audiodev/opensl_dev.c
+++ b/pjmedia/src/pjmedia-audiodev/opensl_dev.c
@@ -226,6 +226,7 @@ void bqRecorderCallback(W_SLBufferQueueItf bq, void *context)
pj_bzero(stream->rec_thread_desc, sizeof(pj_thread_desc));
status = pj_thread_register("opensl_rec", stream->rec_thread_desc,
&stream->rec_thread);
+ PJ_UNUSED_ARG(status); /* Unused for now.. */
stream->rec_thread_initialized = 1;
PJ_LOG(5, (THIS_FILE, "Recorder thread started"));
}