]> xenbits.xensource.com Git - people/liuw/osstest.git/commitdiff
ts-hosts-allocate-Executive: Replace some odd commas with semicolons
authorIan Jackson <ian.jackson@eu.citrix.com>
Wed, 6 Jul 2016 14:09:27 +0000 (15:09 +0100)
committerWei Liu <wei.liu2@citrix.com>
Tue, 6 Sep 2016 11:30:34 +0000 (12:30 +0100)
There does not seem to be any reason for this.  I think it must be a
leftover from a previous use of { A => X, B => Y, ... } syntax.

Signed-off-by: Ian Jackson <Ian.Jackson@eu.citrix.com>
CC: Wei Liu <wei.liu2@citrix.com>
ts-hosts-allocate-Executive

index a8103d119f2ecba1a7f514d91e996f294cd99b67..451c6fc8fbe288e657175716f9b1c42802a6137e 100755 (executable)
@@ -709,8 +709,8 @@ sub compute_booking_list () {
        $book->{Job}= "$flight.$job";
        $book->{Reso}= "$sel->{restype} $sel->{resname}";
        $book->{Xinfo}= $hid->{Ident};
-       $book->{Start}= $best->{Start},
-       $book->{End}= $best->{Start} + $best->{Duration},
+       $book->{Start}= $best->{Start};
+       $book->{End}= $best->{Start} + $best->{Duration};
        push @bookings, $book;
     }
     return { Bookings => \@bookings };