# HG changeset patch # User František Kučera # Date 1638051315 -3600 # Node ID 8a590a73db8ae610ca447392a30ed276cb097d85 # Parent 0afd34a2b424b286843f0e360657699f8be19132 exception: fix typo: getMessge() → getMessage() diff -r 0afd34a2b424 -r 8a590a73db8a src/relpipe-in-xmltable.cpp --- a/src/relpipe-in-xmltable.cpp Tue Nov 23 20:37:52 2021 +0100 +++ b/src/relpipe-in-xmltable.cpp Sat Nov 27 23:15:15 2021 +0100 @@ -52,11 +52,11 @@ command.process(cin, cout, configuration); resultCode = CLI::EXIT_CODE_SUCCESS; } catch (RelpipeWriterException& e) { - fwprintf(stderr, L"Caught Writer exception: %ls\n", e.getMessge().c_str()); + fwprintf(stderr, L"Caught Writer exception: %ls\n", e.getMessage().c_str()); fwprintf(stderr, L"Debug: Input stream: eof=%ls, lastRead=%d\n", (cin.eof() ? L"true" : L"false"), cin.gcount()); resultCode = CLI::EXIT_CODE_DATA_ERROR; } catch (RelpipeCLIException& e) { - fwprintf(stderr, L"Caught CLI exception: %ls\n", e.getMessge().c_str()); + fwprintf(stderr, L"Caught CLI exception: %ls\n", e.getMessage().c_str()); fwprintf(stderr, L"Debug: Input stream: eof=%ls, lastRead=%d\n", (cin.eof() ? L"true" : L"false"), cin.gcount()); resultCode = e.getExitCode(); } // TODO: catch xmlpp::exception