diff -r b4fbf2772cfd -r 3dcb206894c7 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; }