summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorpixel <pixel>2008-01-21 17:20:55 +0000
committerpixel <pixel>2008-01-21 17:20:55 +0000
commit99d9b1d76357d6c90b9974b2224b6eccff422cd9 (patch)
treee9bccbda3f31eaa4eabad930cb6b91164ac3530e /lib
parenta8f2f2297f4bd240b9b6284dc69ee586aa9fb49b (diff)
Removing extra 'this' in debug message.
Diffstat (limited to 'lib')
-rw-r--r--lib/Domain.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Domain.cc b/lib/Domain.cc
index 18831c9..99b6c5b 100644
--- a/lib/Domain.cc
+++ b/lib/Domain.cc
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: Domain.cc,v 1.5 2008-01-21 17:18:32 pixel Exp $ */
+/* $Id: Domain.cc,v 1.6 2008-01-21 17:20:55 pixel Exp $ */
#include "Domain.h"
@@ -36,7 +36,7 @@ String Domain::GetPattern() {
}
Domain::Domain(const Regex & _pattern) : pattern(_pattern) {
- printm(M_INFO, "Creating Domain with pattern = " + pattern.GetPattern() + "\n", this);
+ printm(M_INFO, "Creating Domain with pattern = " + pattern.GetPattern() + "\n");
prev = 0;
next = head;
head = this;