]> xenbits.xensource.com Git - osstest.git/commitdiff
cr-publish-flight-logs: Fix abs_time calls
authorIan Jackson <ian.jackson@eu.citrix.com>
Mon, 24 Aug 2020 11:00:16 +0000 (12:00 +0100)
committerIan Jackson <iwj@xenproject.org>
Fri, 2 Oct 2020 15:49:13 +0000 (16:49 +0100)
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 <ian.jackson@eu.citrix.com>
cr-publish-flight-logs

index 63c47d9f4db812f0fc798f5beb892378e52aa081..c570dfafa896dd6b07ad740484b6f991c71d5848 100755 (executable)
@@ -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 $!;