diff options
author | Ted Kremenek <kremenek@apple.com> | 2012-05-22 00:54:40 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2012-05-22 00:54:40 +0000 |
commit | 7c45163d4daafbc367ff4e9c2324b4568b9abe5e (patch) | |
tree | ed94769a31bd0f0a10e7c2e64aba5c5ed3af2650 | |
parent | 86674ec4bfc835e97714bbffe4132da24b260110 (diff) |
Fix typo.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@157229 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-x | utils/analyzer/reducer.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/analyzer/reducer.pl b/utils/analyzer/reducer.pl index 095d501d0a..872f61b33a 100755 --- a/utils/analyzer/reducer.pl +++ b/utils/analyzer/reducer.pl @@ -10,7 +10,7 @@ die "$prog: [error] cannot read file $file\n" if (! -r $file); my $magic = shift @ARGV; die "$prog: [error] no error string specified\n" if (! defined $magic); -# Create a backup of the fuke. +# Create a backup of the file. my $dir = tempdir( CLEANUP => 1 ); print "$prog: created temporary directory '$dir'\n"; my $srcFile = "$dir/$file"; |