mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-19 20:33:39 +00:00
Use _Exit(0) on win32, always use _Exit(1) in log_error()
This commit is contained in:
parent
5531bd7578
commit
5767e4bc4d
2 changed files with 6 additions and 1 deletions
|
@ -208,7 +208,7 @@ void logv_error(const char *format, va_list ap)
|
|||
log_files = backup_log_files;
|
||||
throw 0;
|
||||
#else
|
||||
exit(1);
|
||||
_Exit(1);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue