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

Hildon: work round the usual argv warning

parent e750b325
...@@ -119,7 +119,7 @@ static void Close( vlc_object_t *p_this ) ...@@ -119,7 +119,7 @@ static void Close( vlc_object_t *p_this )
*****************************************************************************/ *****************************************************************************/
static void Run( intf_thread_t *p_intf ) static void Run( intf_thread_t *p_intf )
{ {
char *p_args[] = { "", NULL }; char *p_args[] = { (char *)"vlc", NULL };
char **pp_args = p_args; char **pp_args = p_args;
int i_args = 1; int i_args = 1;
......
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