fixed indent

This commit is contained in:
Devaev Maxim
2019-05-18 23:51:14 +03:00
parent 5672d1aa75
commit c83dddbf0b

View File

@@ -123,10 +123,10 @@ pthread_mutex_t log_mutex;
INLINE char *errno_to_string(char *buf, size_t size) { INLINE char *errno_to_string(char *buf, size_t size) {
#if defined(__GLIBC__) && defined(_GNU_SOURCE) # if defined(__GLIBC__) && defined(_GNU_SOURCE)
return strerror_r(errno, buf, size); return strerror_r(errno, buf, size);
#else # else
strerror_r(errno, buf, size); strerror_r(errno, buf, size);
return buf; return buf;
#endif # endif
} }