diff options
Diffstat (limited to 'src/binary-reader-logging.cc')
-rw-r--r-- | src/binary-reader-logging.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/binary-reader-logging.cc b/src/binary-reader-logging.cc index b86fb550..bd5faaa3 100644 --- a/src/binary-reader-logging.cc +++ b/src/binary-reader-logging.cc @@ -91,8 +91,8 @@ void BinaryReaderLogging::LogTypes(TypeVector& types) { LogTypes(types.size(), types.data()); } -bool BinaryReaderLogging::OnError(const char* message) { - return reader_->OnError(message); +bool BinaryReaderLogging::OnError(ErrorLevel error_level, const char* message) { + return reader_->OnError(error_level, message); } void BinaryReaderLogging::OnSetState(const State* s) { |