Commit bacc5202 authored by Marco Buttu's avatar Marco Buttu
Browse files

Fix #135: warnings in SRTLPBandReceiver

parent ab3a0ab9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@ using namespace IRA;
    } \
    else { \
        FIELD=tmpw; \
        ACS_DEBUG_PARAM("CConfiguration::Init()",DESCR" %lu",tmpw); \
        ACS_DEBUG_PARAM("CConfiguration::Init()",DESCR" %u",tmpw); \
    } \
}

@@ -415,7 +415,7 @@ void CConfiguration::init(maci::ContainerServices *Services) throw (
                "CConfiguration::init()",
                (
                     LM_DEBUG,
                     "SYNTH_VALUE_ENTRY: %lf %lf %ld",
                     "SYNTH_VALUE_ENTRY: %lld %lf %lf",
                     m_taperVector[i].feed,
                     m_taperVector[i].frequency,
                     m_taperVector[i].taper
+9 −2
Original line number Diff line number Diff line
@@ -37,8 +37,15 @@ void CMonitorThread::onStart()
     if(m_currentResponseTime < m_currentSampling+m_currentSampling/10) {
         // Force the response time to be at least 10% more than sampling time
         m_currentResponseTime = m_currentSampling + m_currentSampling / 10; 
         ACS_LOG(LM_FULL_INFO, "SRTLPBandReceiverImpl::execute()", (LM_WARNING, \
                     "WATCH_DOG_RESPONSE_TIME_ADJUSTED_TO_FIT_SAMPLING_TIME: %llu uSec", m_currentResponseTime/10));
         ACS_LOG(
             LM_FULL_INFO,
             "SRTLPBandReceiverImpl::execute()",
             (
                  LM_WARNING, 
                  "WATCH_DOG_RESPONSE_TIME_ADJUSTED_TO_FIT_SAMPLING_TIME: %llu uSec",
                  static_cast<long long unsigned>(m_currentResponseTime/10)
             )
         );
         setResponseTime(m_currentResponseTime);
     }
}