From 4b1002f7c5fad28e39581161c1bf03dbdd1b7b54 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Fri, 11 Nov 2016 19:21:51 +0300 Subject: Fix typo implimented -> implemented. --- src/logger.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/logger.cpp') diff --git a/src/logger.cpp b/src/logger.cpp index 49f83efcc..cf4fe1c85 100644 --- a/src/logger.cpp +++ b/src/logger.cpp @@ -95,7 +95,7 @@ Logger::Logger() : mThreadLocked(false), mLogToStandardOut(true), mDebugLog(false), - mReportUnimplimented(false) + mReportUnimplemented(false) { #if defined __native_client__ && defined(NACL_LOG) std::cout.setf(std::ios_base::unitbuf); @@ -423,9 +423,9 @@ void Logger::error(const std::string &error_text) exit(1); } -void Logger::unimplimented(const int id) +void Logger::unimplemented(const int id) { - if (!mReportUnimplimented) + if (!mReportUnimplemented) return; const std::string str = strprintf("Unimplimented packet: %d (0x%x)", @@ -435,10 +435,10 @@ void Logger::unimplimented(const int id) log(str); } -void Logger::unimplimented(const int id, +void Logger::unimplemented(const int id, const int id2) { - if (!mReportUnimplimented) + if (!mReportUnimplemented) return; const std::string str = strprintf( @@ -450,11 +450,11 @@ void Logger::unimplimented(const int id, log(str); } -void Logger::unimplimented(const uint32_t id, +void Logger::unimplemented(const uint32_t id, const uint32_t id2, const uint32_t id3) const { - if (!mReportUnimplimented) + if (!mReportUnimplemented) return; const std::string str = strprintf( -- cgit v1.2.3-60-g2f50