diff options
author | Patrick Jenkins <pjenkins@apple.com> | 2006-07-07 17:08:02 +0000 |
---|---|---|
committer | Patrick Jenkins <pjenkins@apple.com> | 2006-07-07 17:08:02 +0000 |
commit | b26d39eae5b4ded34b1180e06edf62afe35ad3d2 (patch) | |
tree | d0e86d55231a255f9f7007e9bba3a0bd75a22682 | |
parent | bbf34398a0f2f9e4ebece37ea07dbef0b31fdbff (diff) |
Fixed variable naming issue that prevented $Prefix-senddata.txt from having any information
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29046 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-x | utils/NewNightlyTest.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/NewNightlyTest.pl b/utils/NewNightlyTest.pl index 76d477fc36..8e5dfc45b5 100755 --- a/utils/NewNightlyTest.pl +++ b/utils/NewNightlyTest.pl @@ -441,7 +441,7 @@ sub SendData{ my $sentdata=""; foreach $x(keys(%hash_of_data)){ - $senddata.= "$x => $hash_of_data{$x}\n"; + $sentdata.= "$x => $hash_of_data{$x}\n"; } WriteFile "$Prefix-sentdata.txt", $sentdata; |