From: Ian Jackson Date: Mon, 24 Aug 2020 11:00:16 +0000 (+0100) Subject: cr-publish-flight-logs: Fix abs_time calls X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=d6fcfec4685a3b5675f84cde02e236f2edac168c;p=osstest.git cr-publish-flight-logs: Fix abs_time calls There was a missing space in these messages, since they were introduced in 31b7cae19fe1 timing traces: cr-publish-flight-logs: Report more progress Signed-off-by: Ian Jackson --- diff --git a/cr-publish-flight-logs b/cr-publish-flight-logs index 63c47d9..c570dfa 100755 --- a/cr-publish-flight-logs +++ b/cr-publish-flight-logs @@ -43,7 +43,7 @@ die unless $flight =~ m/^\d*$/; die "usage: ./cr-publish-flight-logs [flight]" unless @ARGV==0; -sub progress { print +(show_abs_time time), @_, "\n" } +sub progress { print +(show_abs_time time), " ", @_, "\n" } progress("acquiring publish-lock..."); open LOCK, "> $c{GlobalLockDir}/publish-lock" or die $!;