# HG changeset patch # User František Kučera # Date 1638051315 -3600 # Node ID 979848ccdc9c6a04851a74e9e8f69c11ba838882 # Parent cf4971342380859c1bbc6048befdaf90da273ff2 exception: fix typo: getMessge() → getMessage() diff -r cf4971342380 -r 979848ccdc9c src/relpipe-in-filesystem.cpp --- a/src/relpipe-in-filesystem.cpp Sat May 01 18:18:01 2021 +0200 +++ b/src/relpipe-in-filesystem.cpp Sat Nov 27 23:15:15 2021 +0100 @@ -53,11 +53,11 @@ command->process(STDIN_FILENO, STDOUT_FILENO, 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; } 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(); }