aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkurtis.heimerl <kurtis.heimerl@19bc5d8c-e614-43d4-8b26-e1612bc8e597>2012-12-17 11:21:32 +0000
committerkurtis.heimerl <kurtis.heimerl@19bc5d8c-e614-43d4-8b26-e1612bc8e597>2012-12-17 11:21:32 +0000
commiteb63ec9c5f749ebf3364aab2c44d676a6cbd160b (patch)
tree4362867c579110e7a0bdc1c3d2411f3d45c895ee
parentd3564ff846ef98b33113f65acc7074e19ec3316d (diff)
From 32bbfc3c89b1c56672bf2fd3660a45c513ac54d4 Mon Sep 17 00:00:00 2001
From: Alexander Chemeris <Alexander.Chemeris@gmail.com> Date: Sun, 16 Dec 2012 17:33:46 +0400 Subject: [PATCH 1/4] Fix typos in comments. --- CommonLibs/Logger.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) git-svn-id: http://wush.net/svn/range/software/public/openbts/trunk@4635 19bc5d8c-e614-43d4-8b26-e1612bc8e597
-rw-r--r--CommonLibs/Logger.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/CommonLibs/Logger.h b/CommonLibs/Logger.h
index 0a9b535..6b1c44d 100644
--- a/CommonLibs/Logger.h
+++ b/CommonLibs/Logger.h
@@ -73,7 +73,7 @@ class Log {
protected:
std::ostringstream mStream; ///< This is where we buffer up the log entry.
- int mPriority; ///< Priority of current repot.
+ int mPriority; ///< Priority of current report.
bool mDummyInit;
public:
@@ -84,7 +84,7 @@ class Log {
Log(const char* name, const char* level=NULL, int facility=LOG_USER);
- // Most of the work is in the desctructor.
+ // Most of the work is in the destructor.
/** The destructor actually generates the log entry. */
~Log();