testbot/lib: Standardize a few LogMsg statements.

Francois Gouget fgouget at codeweavers.com
Thu Oct 25 11:35:17 CDT 2012


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

diff --git a/testbot/lib/WineTestBot/TestAgent.pm b/testbot/lib/WineTestBot/TestAgent.pm
index 7b6eb56..f2fa888 100644
--- a/testbot/lib/WineTestBot/TestAgent.pm
+++ b/testbot/lib/WineTestBot/TestAgent.pm
@@ -138,7 +138,7 @@ sub _Copy($$)
 sub SendFile($$$)
 {
   my ($Hostname, $HostPathName, $GuestPathName) = @_;
-  LogMsg("SendFile $HostPathName -> $Hostname $GuestPathName\n");
+  LogMsg "SendFile $HostPathName -> $Hostname $GuestPathName\n";
 
   my $fh;
   if (!open($fh, "<", $HostPathName))
@@ -171,7 +171,7 @@ sub SendFile($$$)
 sub GetFile($$$)
 {
   my ($Hostname, $GuestPathName, $HostPathName) = @_;
-  LogMsg("GetFile $Hostname $GuestPathName -> $HostPathName\n");
+  LogMsg "GetFile $Hostname $GuestPathName -> $HostPathName\n";
 
   my $fh;
   if (!open($fh, ">", $HostPathName))
@@ -227,7 +227,7 @@ sub GetFile($$$)
 sub RunScript($$$)
 {
   my ($Hostname, $ScriptText, $Timeout) = @_;
-  LogMsg("RunScript $Hostname ", ($Timeout || 0), " [$ScriptText]\n");
+  LogMsg "RunScript $Hostname ", ($Timeout || 0), " [$ScriptText]\n";
 
   my $Err;
   my $nc = _Connect($Hostname);
-- 
1.7.10.4



More information about the wine-patches mailing list