X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=libctsupport%2Fsyserror.cpp;fp=libctsupport%2Fsyserror.cpp;h=ee6980e0291779601b774ebda285b0a0807968e2;hp=f87b82eee3ef08d93d1a31c3699d1d55810c66ad;hb=5ff5b33a6bc64fb804106c4d50b83e4cf0d7b0f4;hpb=c04ed309e5f8ad29d194b52c0f82f0be53ed56f3 diff --git a/libctsupport/syserror.cpp b/libctsupport/syserror.cpp index f87b82e..ee6980e 100644 --- a/libctsupport/syserror.cpp +++ b/libctsupport/syserror.cpp @@ -2,7 +2,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: syserror.cpp,v 1.12 2001/01/02 16:02:13 kevin Exp $ +** $Id: syserror.cpp,v 1.13 2001/01/10 21:21:53 kevin Exp $ ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License (version 2) as @@ -115,8 +115,10 @@ void sys_verror (std::string& strOutput, int severity, const char *msg, va_list os << errStr << "\n"; strOutput = os.str(); - if (severity == ERR_FATAL) - throw std::runtime_error (errStr); + if (severity == ERR_FATAL) { + std::cerr << strOutput; + throw std::runtime_error (strOutput); + } #if INTERACTIVE_ERROR_DISPLAY std::cout << "A - Abort C - Continue W - Turn off warnings? ";