summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2013-12-16 13:37:13 +0100
committerDaniel Friesel <derf@finalrewind.org>2013-12-16 13:37:13 +0100
commit2c239b7e8e7ac9ba82989afbd6639231e531a2f5 (patch)
tree30a2543a151c89b720c59167c5c39a71b59a3ab8
parent35cdb3859698515c8e10c50dc14b8b49c4c13d25 (diff)
efa-m: Move relative time back to line start
-rwxr-xr-xbin/efa-m10
1 files changed, 2 insertions, 8 deletions
diff --git a/bin/efa-m b/bin/efa-m
index 525ea01..ee2fbf7 100755
--- a/bin/efa-m
+++ b/bin/efa-m
@@ -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);