From 189c4c96fc0b40aa98c28f6bd4b95753bdaec970 Mon Sep 17 00:00:00 2001
From: Josh Blum <josh@joshknows.com>
Date: Mon, 5 Jul 2010 21:51:48 -0700
Subject: uhd: remove windows warnings (minor tweaks)

---
 host/lib/transport/udp_zero_copy_asio.cpp | 2 +-
 host/lib/usrp/usrp2/usrp2_impl.hpp        | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

(limited to 'host/lib')

diff --git a/host/lib/transport/udp_zero_copy_asio.cpp b/host/lib/transport/udp_zero_copy_asio.cpp
index a91be25af..7f9292d24 100644
--- a/host/lib/transport/udp_zero_copy_asio.cpp
+++ b/host/lib/transport/udp_zero_copy_asio.cpp
@@ -28,7 +28,7 @@ using namespace uhd::transport;
  * Constants
  **********************************************************************/
 //enough buffering for half a second of samples at full rate on usrp2
-static const size_t MIN_SOCK_BUFF_SIZE(sizeof(boost::uint32_t) * 25e6 * 0.5);
+static const size_t MIN_SOCK_BUFF_SIZE = size_t(sizeof(boost::uint32_t) * 25e6 * 0.5);
 static const size_t MAX_DGRAM_SIZE = 1500; //assume max size on send and recv
 static const double RECV_TIMEOUT = 0.1; //100 ms
 
diff --git a/host/lib/usrp/usrp2/usrp2_impl.hpp b/host/lib/usrp/usrp2/usrp2_impl.hpp
index 07e29eadd..42630a3e4 100644
--- a/host/lib/usrp/usrp2/usrp2_impl.hpp
+++ b/host/lib/usrp/usrp2/usrp2_impl.hpp
@@ -114,7 +114,7 @@ private:
     static const size_t _max_tx_bytes_per_packet =
         USRP2_UDP_BYTES -
         uhd::transport::vrt::max_if_hdr_words32*sizeof(boost::uint32_t) -
-        sizeof(uhd::transport::vrt::if_packet_info_t::cid) //no class id ever used
+        sizeof(uhd::transport::vrt::if_packet_info_t().cid) //no class id ever used
     ;
 };
 
-- 
cgit v1.2.3