summaryrefslogtreecommitdiffstats
path: root/host/lib
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2012-05-16 10:48:38 -0700
committerJosh Blum <josh@joshknows.com>2012-05-16 10:48:38 -0700
commit2a0eecdf33f1140eab646b2dfb3686e4397a6253 (patch)
treea47c6d1905b93cac5e5a3d2d13973b3178768ca9 /host/lib
parentd8d749422b26f5a8161306fe74dbd37b0c560f97 (diff)
downloaduhd-2a0eecdf33f1140eab646b2dfb3686e4397a6253.tar.gz
uhd-2a0eecdf33f1140eab646b2dfb3686e4397a6253.tar.bz2
uhd-2a0eecdf33f1140eab646b2dfb3686e4397a6253.zip
b100: fix use of boost cstdint here
Diffstat (limited to 'host/lib')
-rw-r--r--host/lib/usrp/b100/codec_ctrl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/b100/codec_ctrl.cpp b/host/lib/usrp/b100/codec_ctrl.cpp
index 4f9036039..278713ce1 100644
--- a/host/lib/usrp/b100/codec_ctrl.cpp
+++ b/host/lib/usrp/b100/codec_ctrl.cpp
@@ -105,7 +105,7 @@ b100_codec_ctrl_impl::b100_codec_ctrl_impl(spi_iface::sptr iface){
_ad9862_regs.dll_mode = ad9862_regs_t::DLL_MODE_FAST;
//write the register settings to the codec
- for (uint8_t addr = 0; addr <= 25; addr++){
+ for (boost::uint8_t addr = 0; addr <= 25; addr++){
this->send_reg(addr);
}