diff options
Diffstat (limited to 'butl')
-rw-r--r-- | butl/process.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/butl/process.cxx b/butl/process.cxx index c427aa8..c0355d4 100644 --- a/butl/process.cxx +++ b/butl/process.cxx @@ -1282,7 +1282,7 @@ namespace butl switch (status) { case STATUS_ACCESS_VIOLATION: return "access violation"; - case STATUS_STACK_OVERFLOW: return "stack overflow"; + case STATUS_DLL_INIT_FAILED: return "DLL initialization failed"; case STATUS_INTEGER_DIVIDE_BY_ZERO: return "integer divided by zero"; // VC-compiled program that calls abort() terminates with this error code @@ -1291,6 +1291,7 @@ namespace butl // program exits with status 3 for both VC and MinGW GCC. Sounds weird. // case STATUS_STACK_BUFFER_OVERRUN: return "stack buffer overrun"; + case STATUS_STACK_OVERFLOW: return "stack overflow"; default: { |