usrp1: Fix formatting of log message (missing space)

Change-Id: I378a8081a224acda3ee2af9b6aa0d680de884695
This commit is contained in:
Harald Welte 2019-01-11 22:41:58 +01:00
parent a944001873
commit f97d75b355
1 changed files with 2 additions and 2 deletions

View File

@ -606,7 +606,7 @@ bool USRPDevice::setTxFreq(double wFreq, size_t chan)
return true;
}
else {
LOGC(DDEV, ALERT) << "set TX: " << wFreq << "failed" << std::endl
LOGC(DDEV, ALERT) << "set TX: " << wFreq << " failed" << std::endl
<< " baseband freq: " << result.baseband_freq << std::endl
<< " DDC freq: " << result.dxc_freq << std::endl
<< " residual freq: " << result.residual_freq;
@ -631,7 +631,7 @@ bool USRPDevice::setRxFreq(double wFreq, size_t chan)
return true;
}
else {
LOGC(DDEV, ALERT) << "set RX: " << wFreq << "failed" << std::endl
LOGC(DDEV, ALERT) << "set RX: " << wFreq << " failed" << std::endl
<< " baseband freq: " << result.baseband_freq << std::endl
<< " DDC freq: " << result.dxc_freq << std::endl
<< " residual freq: " << result.residual_freq;