Sfoglia il codice sorgente

sndio: remove strerror_l

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

fixes #3835
Kurt Kartaltepe 5 anni fa
parent
commit
f80421a76d
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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)