mirror of
https://github.com/pikvm/ustreamer.git
synced 2026-05-28 00:06:24 +00:00
fixed indent
This commit is contained in:
@@ -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
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user