From 3f5528b4112a6e63d4535c1804bee4ba310879e7 Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Tue, 16 Apr 2013 14:58:45 +0000 Subject: [asan] Fix spelling in asan_rtl.cc Test commit. Reviewers: kcc, glider, samsonov Reviewed By: glider CC: llvm-commits Differential Revision: http://llvm-reviews.chandlerc.com/D676 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@179595 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/asan/asan_rtl.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/asan/asan_rtl.cc b/lib/asan/asan_rtl.cc index c367a7027..1b6a6cdae 100644 --- a/lib/asan/asan_rtl.cc +++ b/lib/asan/asan_rtl.cc @@ -64,7 +64,7 @@ static void AsanCheckFailed(const char *file, int line, const char *cond, } // -------------------------- Flags ------------------------- {{{1 -static const int kDeafultMallocContextSize = 30; +static const int kDefaultMallocContextSize = 30; Flags asan_flags_dont_use_directly; // use via flags(). @@ -139,7 +139,7 @@ void InitializeFlags(Flags *f, const char *env) { f->debug = false; f->report_globals = 1; f->check_initialization_order = false; - f->malloc_context_size = kDeafultMallocContextSize; + f->malloc_context_size = kDefaultMallocContextSize; f->replace_str = true; f->replace_intrin = true; f->mac_ignore_invalid_free = false; -- cgit v1.2.1