summaryrefslogtreecommitdiff
path: root/lib/profile/InstrProfilingFile.c
diff options
context:
space:
mode:
authorGeorge Burgess IV <george.burgess.iv@gmail.com>2016-07-15 22:24:24 +0000
committerGeorge Burgess IV <george.burgess.iv@gmail.com>2016-07-15 22:24:24 +0000
commit906ef8aa9f71080af17a3bc51385acae5f56275e (patch)
treea4a4a2ed131052bcc75c4eded45dee123eacf898 /lib/profile/InstrProfilingFile.c
parentb2df85452569485eb828a9499060db3d6c8b4fd3 (diff)
Fix a typeo.
(obligatory s/typeo/typo) git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@275632 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/profile/InstrProfilingFile.c')
-rw-r--r--lib/profile/InstrProfilingFile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/profile/InstrProfilingFile.c b/lib/profile/InstrProfilingFile.c
index b737baff4..32762d14e 100644
--- a/lib/profile/InstrProfilingFile.c
+++ b/lib/profile/InstrProfilingFile.c
@@ -231,7 +231,7 @@ static void truncateCurrentFile(void) {
/* Create the directory holding the file, if needed. */
if (strchr(Filename, DIR_SEPARATOR)
#if defined(DIR_SEPARATOR_2)
- || strchr(Filename, DIR_SEPERATOR_2)
+ || strchr(Filename, DIR_SEPARATOR_2)
#endif
) {
char *Copy = (char *)COMPILER_RT_ALLOCA(Length + 1);