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

Typo

parent 5a7d66bf
...@@ -140,7 +140,7 @@ static void Execute( intf_thread_t *p_this, const char *const *ppsz_args ) ...@@ -140,7 +140,7 @@ static void Execute( intf_thread_t *p_this, const char *const *ppsz_args )
case 0: /* we're the child */ case 0: /* we're the child */
/* We don't want output */ /* We don't want output */
freopen( "/dev/null", "w", stdout ); freopen( "/dev/null", "w", stdout );
freopen( "/dev/null", "w" stderr ); freopen( "/dev/null", "w", stderr );
execv( ppsz_args[0] , (char *const *)ppsz_args ); execv( ppsz_args[0] , (char *const *)ppsz_args );
/* If the file we want to execute doesn't exist we exit() */ /* If the file we want to execute doesn't exist we exit() */
exit( 1 ); exit( 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