# HG changeset patch # User František Kučera # Date 1638051317 -3600 # Node ID 508b51f094b83e96118e3062bcd60e498df58d11 # Parent 1c6fb0b74de3de4d029fc1ffc359ab3e2d414536 exception: fix typo: getMessge() → getMessage() diff -r 1c6fb0b74de3 -r 508b51f094b8 src/relpipe-out-tabular.cpp --- a/src/relpipe-out-tabular.cpp Sat Oct 24 00:08:19 2020 +0200 +++ b/src/relpipe-out-tabular.cpp Sat Nov 27 23:15:17 2021 +0100 @@ -52,11 +52,11 @@ // throw RelpipeCLIException(L"Missing command…", CLI::EXIT_CODE_BAD_SYNTAX); // } } catch (RelpipeCLIException e) { - fwprintf(stderr, L"Caught CLI exception: %ls\n", e.getMessge().c_str()); + fwprintf(stderr, L"Caught CLI 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 = e.getExitCode(); } catch (RelpipeReaderException e) { - fwprintf(stderr, L"Caught Reader exception: %ls\n", e.getMessge().c_str()); + fwprintf(stderr, L"Caught Reader 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; }