From d65d91ddcc8f08a637f9eef9f72006e42687cd95 Mon Sep 17 00:00:00 2001 From: Laurent <laurent.thomas@open-cells.com> Date: Tue, 14 Feb 2017 18:18:34 +0100 Subject: [PATCH] gcc warning fix --- openair2/UTIL/LOG/log.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/openair2/UTIL/LOG/log.h b/openair2/UTIL/LOG/log.h index 5e5be23e0d2..b31efbcf749 100644 --- a/openair2/UTIL/LOG/log.h +++ b/openair2/UTIL/LOG/log.h @@ -370,10 +370,10 @@ static inline uint64_t checkTCPU(int timeout, char * file, int line) { double microCycles=(double)(cpuf*1000); int duration=(int)((cur-last)/microCycles); if ( last!=0 && duration > timeout ) { - struct timespec ts; - clock_gettime(CLOCK_MONOTONIC, &ts); - printf("%.3f %s:%d lte-ue delay %d (exceed %d), CPU for this period: %.2f\n", ts.tv_sec+ts.tv_nsec/(1000*1000*1000.0), file, line, - duration, timeout, (CPUTime-lastCPUTime)/1000.0 ); + //struct timespec ts; + //clock_gettime(CLOCK_MONOTONIC, &ts); + printf("%s:%d lte-ue delay %d (exceed %d), CPU for this period: %lld\n", file, line, + duration, timeout, (long long)CPUTime-lastCPUTime ); } last=cur; lastCPUTime=CPUTime; -- GitLab