From 08a0e08a8df2511452a2f2e5cdcf7b1c0096f088 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Wed, 11 Sep 2013 19:35:32 +0000 Subject: Fix typo git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@190543 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/profile/GCDAProfiling.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/profile/GCDAProfiling.c') diff --git a/lib/profile/GCDAProfiling.c b/lib/profile/GCDAProfiling.c index f80e06248..dcd766284 100644 --- a/lib/profile/GCDAProfiling.c +++ b/lib/profile/GCDAProfiling.c @@ -206,7 +206,7 @@ static int map_file() { fseek(output_file, 0L, SEEK_END); file_size = ftell(output_file); - /* A size of 0 is invaild to `mmap'. Return a fail here, but don't issue an + /* A size of 0 is invalid to `mmap'. Return a fail here, but don't issue an * error message because it should "just work" for the user. */ if (file_size == 0) return -1; -- cgit v1.2.3