Checking if offset is non-zero before adding to the timestamp is useless, as adding 0 will not change the timestamp. Signed-off-by: Tzvetomir Stoyanov (VMware) <tz.stoyanov@xxxxxxxxx> --- lib/trace-cmd/trace-input.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/trace-cmd/trace-input.c b/lib/trace-cmd/trace-input.c index e8a257db..bacf9ccf 100644 --- a/lib/trace-cmd/trace-input.c +++ b/lib/trace-cmd/trace-input.c @@ -1323,8 +1323,7 @@ static unsigned long long timestamp_calc(unsigned long long ts, int cpu, } /* User specified time offset with --ts-offset or --date options */ - if (handle->ts_offset) - ts += handle->ts_offset; + ts += handle->ts_offset; return ts; } -- 2.30.2