laforge
/
openbts-osmo
Archived
1
0
Fork 0

uhd: add missing return in device open

Fixes a compile warning; returns true if all is goes well.

Signed-off-by: Thomas Tsou <ttsou@vt.edu>
This commit is contained in:
Thomas Tsou 2010-11-27 17:58:00 -05:00
parent e9010cb9a0
commit 6e55e19418
1 changed files with 2 additions and 0 deletions

View File

@ -275,6 +275,8 @@ bool UHDDevice::open()
// Print configuration
LOG(INFO) << usrpDevice->get_pp_string();
return true;
}