Commit b92ff12b authored by Rafaël Carré's avatar Rafaël Carré

use the correct type *cough*

parent 51660062
...@@ -371,7 +371,7 @@ static void QueueMsg( vlc_object_t *p_this, int i_queue, int i_type, ...@@ -371,7 +371,7 @@ static void QueueMsg( vlc_object_t *p_this, int i_queue, int i_type,
#ifdef __GLIBC__ #ifdef __GLIBC__
fprintf( stderr, "main warning: can't store message (%m): " ); fprintf( stderr, "main warning: can't store message (%m): " );
#else #else
char *psz_err[1001]; char psz_err[1001];
#ifndef WIN32 #ifndef WIN32
/* we're not using GLIBC, so we are sure that the error description /* we're not using GLIBC, so we are sure that the error description
* will be stored in the buffer we provide to strerror_r() */ * will be stored in the buffer we provide to strerror_r() */
......
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