Fix syntax error in r272640.
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@272641 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/src/system_error.cpp b/src/system_error.cpp
index d7115fc..885afd1 100644
--- a/src/system_error.cpp
+++ b/src/system_error.cpp
@@ -70,7 +70,8 @@
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;