exception: fix typo: getMessge() → getMessage() v_0 v0.18
authorFrantišek Kučera <franta-hg@frantovo.cz>
Sat, 27 Nov 2021 23:15:16 +0100
branchv_0
changeset 10 15a151aa93b1
parent 9 47a22b365f7c
child 11 6eed1385b211
exception: fix typo: getMessge() → getMessage()
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;
 	}