Przeglądaj źródła

sndio: remove strerror_l

Replace it with the typical strerror for platforms that dont have full
posix support (freebsd/clang).

fixes #3835
Kurt Kartaltepe 4 lat temu
rodzic
commit
f80421a76d
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      plugins/sndio/sndio-input.c

+ 1 - 1
plugins/sndio/sndio-input.c

@@ -38,7 +38,7 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 #define berr(level, msg, ...)                                   \
 	do {                                                    \
-		const char *errstr = strerror_l(errno, NULL);   \
+		const char *errstr = strerror(errno);           \
 		blog(level, msg ": %s", ##__VA_ARGS__, errstr); \
 	} while (0)