Skip to content

Commit

Permalink
log_fatal() cleans up gracefully now instead of calling abort().
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Mar 9, 2004
1 parent 2340350 commit c942eff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install_log.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ void log_fatal(const char *fmt, ...)
vsnprintf(buf, BUFSIZ, fmt, ap);
va_end(ap);
print_log(log, LOG_FATAL, "%s\n", buf);
abort();
ui_fatal_error("%s", buf);
}

/* Displays a dialog using the UI code and abort the installation */
Expand Down

0 comments on commit c942eff

Please sign in to comment.