diff --git a/src/unix/utilsunx.cpp b/src/unix/utilsunx.cpp index 69b8cea1a0..79c2431059 100644 --- a/src/unix/utilsunx.cpp +++ b/src/unix/utilsunx.cpp @@ -277,7 +277,7 @@ long wxExecute( wxChar **argv, bool sync, wxProcess *process ) } // fork the process -#ifdef HAVE_VFORK +#if HAVE_VFORK pid_t pid = vfork(); #else pid_t pid = fork();