diff options
author | gdt | 2007-05-14 14:12:11 +0000 |
---|---|---|
committer | gdt | 2007-05-14 14:12:11 +0000 |
commit | 26edfd3579f33893e5a917df0ccb77c301252e7f (patch) | |
tree | 77e41b63a53d51149806ac925c6ac631d25f4bb9 | |
parent | c95b26a7d8f04140d2371c075016c39c45b92580 (diff) | |
download | gnuradio-26edfd3579f33893e5a917df0ccb77c301252e7f.tar.gz gnuradio-26edfd3579f33893e5a917df0ccb77c301252e7f.tar.bz2 gnuradio-26edfd3579f33893e5a917df0ccb77c301252e7f.zip |
avoid unused warning which breaks build.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@5464 221aa14e-8319-0410-a670-987f0aec2ac5
-rw-r--r-- | usrp/host/lib/inband/usrp_server.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usrp/host/lib/inband/usrp_server.cc b/usrp/host/lib/inband/usrp_server.cc index 5041a9213..29c2058ae 100644 --- a/usrp/host/lib/inband/usrp_server.cc +++ b/usrp/host/lib/inband/usrp_server.cc @@ -141,6 +141,7 @@ usrp_server::handle_message(mb_message_sptr msg) // Do the right thing.... // build a reply + (void) which_usrp; // avoid unused warning // if everything OK status = PMT_T; |