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
This commit is contained in:
kurtis.heimerl 2012-12-17 11:21:32 +00:00
parent d3564ff846
commit eb63ec9c5f
1 changed files with 2 additions and 2 deletions

View File

@ -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();