summaryrefslogtreecommitdiffstats
path: root/kjs/math_object.cpp
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-03-07 17:22:58 -0600
committerDarrell Anderson <humanreadable@yahoo.com>2012-03-07 17:22:58 -0600
commite15521d96b21cb0c771cce7cbe2ceb38f27c8844 (patch)
treed70ae645d1e414273f12736df3589cc96fdeebda /kjs/math_object.cpp
parent563d4ecebe282b0062cbdb74413ef960401a25bf (diff)
downloadtdelibs-e15521d96b21cb0c771cce7cbe2ceb38f27c8844.tar.gz
tdelibs-e15521d96b21cb0c771cce7cbe2ceb38f27c8844.zip
Add source code module name to stdout/stderr messages to improve readability.
Diffstat (limited to 'kjs/math_object.cpp')
-rw-r--r--kjs/math_object.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kjs/math_object.cpp b/kjs/math_object.cpp
index 6ad8289b0..be4943319 100644
--- a/kjs/math_object.cpp
+++ b/kjs/math_object.cpp
@@ -122,7 +122,7 @@ Value MathObjectImp::getValueProperty(ExecState *, int token) const
d = sqrt(2.0);
break;
default:
- fprintf( stderr, "Internal error in MathObjectImp: unhandled token %d\n", token );
+ fprintf( stderr, "[math_object] Internal error in MathObjectImp: unhandled token %d\n", token );
break;
}