log_error(_("child process exited with exit code %d"),
log_error(_("child process exited with exit code %d"),
WEXITSTATUS(exitstatus));
WEXITSTATUS(exitstatus));
elseif(WIFSIGNALED(exitstatus))
elseif(WIFSIGNALED(exitstatus))
#ifndef WIN32
log_error(_("child process was terminated by signal %d"),
log_error(_("child process was terminated by signal %d"),
WTERMSIG(exitstatus));
WTERMSIG(exitstatus));
#else
log_error(_("child process was terminated by exception %X\nSee http://source.winehq.org/source/include/ntstatus.h for a description\nof the hex value."),
WTERMSIG(exitstatus));
#endif
else
else
log_error(_("child process exited with unrecognized status %d"),
log_error(_("child process exited with unrecognized status %d"),