Commit 822412bf authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Win32: strerror won't work

parent b59703c4
......@@ -123,7 +123,7 @@ void vlc_thread_fatal (const char *action, int error, const char *function,
/* Avoid the strerror_r() prototype brain damage in glibc */
errno = error;
fprintf (stderr, " Error message: %m at:\n");
#else
#elif !defined (WIN32)
char buf[1000];
const char *msg;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment