From 61df7909abf763e9c412c3d6db7e0ae070131006 Mon Sep 17 00:00:00 2001 From: Eric Fiselier Date: Tue, 14 Jun 2016 06:08:10 +0000 Subject: [PATCH] Fix syntax error in r272640. llvm-svn: 272641 --- libcxx/src/system_error.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libcxx/src/system_error.cpp b/libcxx/src/system_error.cpp index d7115fc66472..885afd18ce37 100644 --- a/libcxx/src/system_error.cpp +++ b/libcxx/src/system_error.cpp @@ -70,7 +70,8 @@ string do_strerror_r(int ev) { string do_strerror_r(int ev) { char buffer[strerror_buff_size]; const int old_errno = errno; - if ((int ret = ::strerror_r(ev, buffer, strerror_buff_size)) != 0) { + int ret; + if ((ret = ::strerror_r(ev, buffer, strerror_buff_size)) != 0) { // If `ret == -1` then the error is specified using `errno`, otherwise // `ret` represents the error. const int new_errno = ret == -1 ? errno : ret;