# HG changeset patch # User František Kučera # Date 1638051315 -3600 # Node ID b4c4c7f937e994c30fa846f3796d14c693fdbd00 # Parent f71eb7aefd257093da9309c739591ad0179f77ff exception: fix typo: getMessge() → getMessage() diff -r f71eb7aefd25 -r b4c4c7f937e9 src/relpipe-in-fstab.cpp --- a/src/relpipe-in-fstab.cpp Sun May 09 17:20:30 2021 +0200 +++ b/src/relpipe-in-fstab.cpp Sat Nov 27 23:15:15 2021 +0100 @@ -71,11 +71,11 @@ resultCode = CLI::EXIT_CODE_SUCCESS; } 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 (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; }