exception: fix typo: getMessge() → getMessage() v_0 v0.18
authorFrantišek Kučera <franta-hg@frantovo.cz>
Sat, 27 Nov 2021 23:15:15 +0100
branchv_0
changeset 37 3dcb206894c7
parent 36 b4fbf2772cfd
child 38 cec70b001eca
exception: fix typo: getMessge() → getMessage()
src/relpipe-in-ini.cpp
--- a/src/relpipe-in-ini.cpp	Wed Sep 29 19:16:33 2021 +0200
+++ b/src/relpipe-in-ini.cpp	Sat Nov 27 23:15:15 2021 +0100
@@ -53,7 +53,7 @@
 		command.process(cin, writer, 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;
 	}