[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [OSSTEST PATCH 5/8] ts-hosts-allocate-Executive: Replace some odd commas with semicolons
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@xxxxxxxxxxxxx> CC: Wei Liu <wei.liu2@xxxxxxxxxx> --- ts-hosts-allocate-Executive | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ts-hosts-allocate-Executive b/ts-hosts-allocate-Executive index 13a0652..69f1cf6 100755 --- a/ts-hosts-allocate-Executive +++ b/ts-hosts-allocate-Executive @@ -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 }; -- 2.1.4 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx https://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |