Francois Gouget : testbot/VMs: Fix a couple of indentation bugs.

Alexandre Julliard julliard at winehq.org
Thu May 1 11:53:36 CDT 2014


Module: tools
Branch: master
Commit: 3b7db0fc973933eccb3aa3b1eb9876b401c76f87
URL:    http://source.winehq.org/git/tools.git/?a=commit;h=3b7db0fc973933eccb3aa3b1eb9876b401c76f87

Author: Francois Gouget <fgouget at codeweavers.com>
Date:   Thu May  1 14:35:09 2014 +0200

testbot/VMs: Fix a couple of indentation bugs.

---

 testbot/lib/WineTestBot/VMs.pm |   12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/testbot/lib/WineTestBot/VMs.pm b/testbot/lib/WineTestBot/VMs.pm
index 55c7c6c..be95bcc 100644
--- a/testbot/lib/WineTestBot/VMs.pm
+++ b/testbot/lib/WineTestBot/VMs.pm
@@ -416,11 +416,11 @@ my %StreamData;
 
 sub _Stream2Image($$$)
 {
-    my ($Stream, $Data, $Size) = @_;
-    my $Image=$StreamData{$Stream};
-    $Image->{Size} += $Size;
-    $Image->{Bytes} .= $Data;
-    return $Size;
+  my ($Stream, $Data, $Size) = @_;
+  my $Image = $StreamData{$Stream};
+  $Image->{Size} += $Size;
+  $Image->{Bytes} .= $Data;
+  return $Size;
 }
 
 sub CaptureScreenImage($)
@@ -507,7 +507,7 @@ sub Validate
   if ($self->Type ne "win32" && $self->Type ne "win64" &&
       ($self->Role eq "winetest" || $self->Role eq "extra"))
   {
-      return ("Role", "Only win32 and win64 VMs can have a role of '" . $self->Role . "'");
+    return ("Role", "Only win32 and win64 VMs can have a role of '" . $self->Role . "'");
   }
   return $self->SUPER::Validate(@_);
 }




More information about the wine-cvs mailing list