From: Antoine Cellerier Date: Sat, 27 Feb 2010 21:07:07 +0000 (+0100) Subject: Kill warning. X-Git-Tag: 1.1.0-pre1~626 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=af632723ca953443629bd88aabd2ddb3dfda34da;p=vlc Kill warning. --- diff --git a/modules/misc/lua/libs/stream.c b/modules/misc/lua/libs/stream.c index 7af8444604..4a940586e3 100644 --- a/modules/misc/lua/libs/stream.c +++ b/modules/misc/lua/libs/stream.c @@ -92,8 +92,8 @@ static int vlclua_memory_stream_new( lua_State *L ) { vlc_object_t * p_this = vlclua_get_this( L ); /* FIXME: duplicating the whole buffer is suboptimal. Keeping a reference to the string so that it doesn't get garbage collected would be better */ - const char * psz_content = strdup( luaL_checkstring( L, 1 ) ); - stream_t *p_stream = stream_MemoryNew( p_this, psz_content, strlen( psz_content ), false ); + char * psz_content = strdup( luaL_checkstring( L, 1 ) ); + stream_t *p_stream = stream_MemoryNew( p_this, (uint8_t *)psz_content, strlen( psz_content ), false ); return vlclua_stream_new_inner( L, p_stream ); }