From c3c7c3e23dc87a1c95ab65ef4921c6a5364b2ecf Mon Sep 17 00:00:00 2001 From: "kurtis.heimerl" Date: Sat, 26 Nov 2011 03:17:57 +0000 Subject: [PATCH] usrp1: fix typo in rx gain setting log message Signed-off-by: Thomas Tsou git-svn-id: http://wush.net/svn/range/software/public/openbts/trunk@2657 19bc5d8c-e614-43d4-8b26-e1612bc8e597 --- Transceiver52M/USRPDevice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Transceiver52M/USRPDevice.cpp b/Transceiver52M/USRPDevice.cpp index ad53be79..85a9f97e 100644 --- a/Transceiver52M/USRPDevice.cpp +++ b/Transceiver52M/USRPDevice.cpp @@ -275,7 +275,7 @@ double USRPDevice::setRxGain(double dB) { if (dB > maxRxGain()) dB = maxRxGain(); if (dB < minRxGain()) dB = minRxGain(); - LOG(NOTICE) << "Setting TX gain to " << dB << " dB."; + LOG(NOTICE) << "Setting RX gain to " << dB << " dB."; if (!m_dbRx->set_gain(dB)) LOG(ERROR) << "Error setting RX gain";