# HG changeset patch # User František Kučera # Date 1638051315 -3600 # Node ID a55f4c95f756861ebb335cb0ce2ba23396fc0058 # Parent 100708c7baa9eedee332bba0c598238beddc2162 exception: fix typo: getMessge() → getMessage() diff -r 100708c7baa9 -r a55f4c95f756 src/relpipe-in-recfile.cpp --- a/src/relpipe-in-recfile.cpp Sat Oct 24 00:08:17 2020 +0200 +++ b/src/relpipe-in-recfile.cpp Sat Nov 27 23:15:15 2021 +0100 @@ -46,7 +46,7 @@ command.process(cin, cout); 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; }