diff options
author | Daniel Friesel <derf@finalrewind.org> | 2013-12-16 13:37:13 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2013-12-16 13:37:13 +0100 |
commit | 2c239b7e8e7ac9ba82989afbd6639231e531a2f5 (patch) | |
tree | 30a2543a151c89b720c59167c5c39a71b59a3ab8 /bin | |
parent | 35cdb3859698515c8e10c50dc14b8b49c4c13d25 (diff) |
efa-m: Move relative time back to line start
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/efa-m | 10 |
1 files changed, 2 insertions, 8 deletions
@@ -150,14 +150,8 @@ sub show_results { $dtime .= ' (+' . $d->delay . ')'; } - if ($relative_times) { - push( @output, - [ $platform, $d->line, $d->destination, $dtime, $d->info ] ); - } - else { - push( @output, - [ $dtime, $platform, $d->line, $d->destination, $d->info ] ); - } + push( @output, + [ $dtime, $platform, $d->line, $d->destination, $d->info ] ); } display_result(@output); |