# HG changeset patch # User František Kučera # Date 1638051316 -3600 # Node ID 15a151aa93b190c3f24d84510569a9f35fdcca70 # Parent 47a22b365f7ccce4eaa528518ddb2e2013b81c39 exception: fix typo: getMessge() → getMessage() diff -r 47a22b365f7c -r 15a151aa93b1 src/relpipe-in-yaml.cpp --- a/src/relpipe-in-yaml.cpp Sat May 29 21:30:23 2021 +0200 +++ b/src/relpipe-in-yaml.cpp Sat Nov 27 23:15:16 2021 +0100 @@ -44,7 +44,7 @@ command.process(cin, writer); 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; }