X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tools%2Fifexport.cpp;h=0ccd6d6921fd54d856ec1850dff395a87f53a3c7;hb=9b2bb510160bdb56f04847f5b55ab61dd8a47976;hp=4b4c5043c1f4d6b2df71be8560386dd45b0b607b;hpb=03df7888191e78f927537a2993d20e402d4d4997;p=ctsim.git diff --git a/tools/ifexport.cpp b/tools/ifexport.cpp index 4b4c504..0ccd6d6 100644 --- a/tools/ifexport.cpp +++ b/tools/ifexport.cpp @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: ifexport.cpp,v 1.1 2000/12/17 22:39:23 kevin Exp $ +** $Id: ifexport.cpp,v 1.2 2000/12/17 23:00:33 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 @@ -48,7 +48,7 @@ static struct option my_options[] = {0, 0, 0, 0} }; -static const char* g_szIdStr = "$Id: ifexport.cpp,v 1.1 2000/12/17 22:39:23 kevin Exp $"; +static const char* g_szIdStr = "$Id: ifexport.cpp,v 1.2 2000/12/17 23:00:33 kevin Exp $"; enum { O_AUTO_FULL, O_AUTO_STD0_1, O_AUTO_STD0_5, O_AUTO_STD1, O_AUTO_STD2, O_AUTO_STD3 }; static const char O_AUTO_FULL_STR[]="full"; @@ -389,9 +389,9 @@ main (int argc, char *const argv[]) try { retval = ifexport_main(argc, argv); } catch (exception e) { - cerr << "Exception: " << e.what() << std::endl; + std::cerr << "Exception: " << e.what() << std::endl; } catch (...) { - cerr << "Unknown exception\n"; + std::cerr << "Unknown exception\n"; } return (retval);