diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-11-11 19:21:51 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-11-11 19:21:51 +0300 |
commit | 4b1002f7c5fad28e39581161c1bf03dbdd1b7b54 (patch) | |
tree | b0fdb77d482740dc3fb76a9dacfd845f13607b8f /src/logger.cpp | |
parent | 841f33c1e9477392907a69108bbbe7cd68895b4d (diff) | |
download | mv-4b1002f7c5fad28e39581161c1bf03dbdd1b7b54.tar.gz mv-4b1002f7c5fad28e39581161c1bf03dbdd1b7b54.tar.bz2 mv-4b1002f7c5fad28e39581161c1bf03dbdd1b7b54.tar.xz mv-4b1002f7c5fad28e39581161c1bf03dbdd1b7b54.zip |
Fix typo implimented -> implemented.
Diffstat (limited to 'src/logger.cpp')
-rw-r--r-- | src/logger.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
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( |