From 94aa8e5a9121a2bb90ad9bb794e274f8011a2da5 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Sun, 15 Feb 2009 15:42:12 -0400 Subject: [PATCH] Changed debug category op.calc to expr.calc --- src/op.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/op.cc b/src/op.cc index 3de3cd5a..65f559c0 100644 --- a/src/op.cc +++ b/src/op.cc @@ -97,7 +97,7 @@ value_t expr_t::op_t::calc(scope_t& scope, ptr_op_t * locus) value_t result; - DEBUG("op.calc", "calculating '" << op_context(this) << "'"); + DEBUG("expr.calc", "calculating '" << op_context(this) << "'"); switch (kind) { case VALUE: @@ -295,7 +295,7 @@ value_t expr_t::op_t::calc(scope_t& scope, ptr_op_t * locus) break; } - DEBUG("op.calc", "result is '" << result << "'"); + DEBUG("expr.calc", "result is '" << result << "'"); return result;