Francois Gouget : testbot/lib: Standardize a few LogMsg statements.

Alexandre Julliard julliard at winehq.org
Thu Oct 25 13:29:48 CDT 2012


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

Author: Francois Gouget <fgouget at codeweavers.com>
Date:   Thu Oct 25 18:35:17 2012 +0200

testbot/lib: Standardize a few LogMsg statements.

---

 testbot/lib/WineTestBot/TestAgent.pm |    6 +++---
 1 files 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);




More information about the wine-cvs mailing list