diff --git a/engine/common/system.c b/engine/common/system.c index 53812312..38196435 100644 --- a/engine/common/system.c +++ b/engine/common/system.c @@ -29,7 +29,6 @@ GNU General Public License for more details. #include #ifndef __ANDROID__ -extern char **environ; #include #endif #endif @@ -299,7 +298,7 @@ void Sys_ShellExecute( const char *path, const char *parms, int shouldExit ) pid_t id = fork( ); if( id == 0 ) { - execve( xdgOpen, (char **)argv, environ ); + execv( xdgOpen, (char **)argv ); fprintf( stderr, "error opening %s %s", xdgOpen, path ); _exit( 1 ); }