diff options
author | Martin Braun <martin.braun@ettus.com> | 2017-05-03 15:58:55 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2017-05-03 15:58:55 -0700 |
commit | 15f0140cd715900b3950b477fb156b0435235c4a (patch) | |
tree | 57489d67b1b0ecfe5d94247c3b6ff512343d8e4b | |
parent | c88be9542d82798260feb55b0ee5500ff94713cd (diff) | |
download | uhd-15f0140cd715900b3950b477fb156b0435235c4a.tar.gz uhd-15f0140cd715900b3950b477fb156b0435235c4a.tar.bz2 uhd-15f0140cd715900b3950b477fb156b0435235c4a.zip |
log: Fixed compiler warning
-rw-r--r-- | host/lib/utils/log.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/utils/log.cpp b/host/lib/utils/log.cpp index 78c02a4c5..bfa012323 100644 --- a/host/lib/utils/log.cpp +++ b/host/lib/utils/log.cpp @@ -356,10 +356,10 @@ private: std::mutex _logmap_mutex; std::atomic<bool> _exit; std::map<std::string, uhd::log::log_fn_t> _loggers; - uhd::transport::bounded_buffer<uhd::log::logging_info> _log_queue; #ifndef UHD_LOG_FASTPATH_DISABLE uhd::transport::bounded_buffer<std::string> _fastpath_queue; #endif + uhd::transport::bounded_buffer<uhd::log::logging_info> _log_queue; }; UHD_SINGLETON_FCN(log_resource, log_rs); |