aboutsummaryrefslogtreecommitdiff
path: root/lib/Support/Errno.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Support/Errno.cpp')
-rw-r--r--lib/Support/Errno.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/Errno.cpp b/lib/Support/Errno.cpp
index 10be9b391b49..2149f21281d3 100644
--- a/lib/Support/Errno.cpp
+++ b/lib/Support/Errno.cpp
@@ -42,7 +42,7 @@ std::string StrError(int errnum) {
const int MaxErrStrLen = 2000;
char buffer[MaxErrStrLen];
buffer[0] = '\0';
-#endif
+#endif
#ifdef HAVE_STRERROR_R
// strerror_r is thread-safe.