Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEd Maste <emaste@freebsd.org>2016-08-30 16:08:21 +0300
committerEd Maste <emaste@freebsd.org>2016-08-30 16:08:21 +0300
commite8a15cef9ddcca4412a814a1c6d3a81656714650 (patch)
tree543644da56d52c810965dbbb0313cb9371a8052d /libunwind/src/config.h
parente9922691995752c8e1011d2bfc5848fb70d2dd0c (diff)
libunwind: correct 'libuwind' typo
There were several instances of libuwind (missing an "n"), dating to the initial import of libunwind. llvm-svn: 280086
Diffstat (limited to 'libunwind/src/config.h')
-rw-r--r--libunwind/src/config.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libunwind/src/config.h b/libunwind/src/config.h
index a50222f7c90d..2b280820e18f 100644
--- a/libunwind/src/config.h
+++ b/libunwind/src/config.h
@@ -6,7 +6,7 @@
// Source Licenses. See LICENSE.TXT for details.
//
//
-// Defines macros used within libuwind project.
+// Defines macros used within libunwind project.
//
//===----------------------------------------------------------------------===//
@@ -83,7 +83,7 @@
fflush(stderr); \
abort(); \
} while (0)
-#define _LIBUNWIND_LOG(msg, ...) fprintf(stderr, "libuwind: " msg, __VA_ARGS__)
+#define _LIBUNWIND_LOG(msg, ...) fprintf(stderr, "libunwind: " msg, __VA_ARGS__)
// Macros that define away in non-Debug builds
#ifdef NDEBUG