diff mbox

[OSSTEST,v3,02/25] ts-hosts-allocate-Executive: Replace some odd commas with semicolons

Message ID 1473167380-957-3-git-send-email-wei.liu2@citrix.com (mailing list archive)
State New, archived
Headers show

Commit Message

Wei Liu Sept. 6, 2016, 1:09 p.m. UTC
From: Ian Jackson <ian.jackson@eu.citrix.com>

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 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox

Patch

diff --git a/ts-hosts-allocate-Executive b/ts-hosts-allocate-Executive
index a8103d1..451c6fc 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 };