summaryrefslogtreecommitdiff
path: root/graphics/asymptote/exp.cc
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/asymptote/exp.cc')
-rw-r--r--graphics/asymptote/exp.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/asymptote/exp.cc b/graphics/asymptote/exp.cc
index e1ae008bf8..8f8ebae097 100644
--- a/graphics/asymptote/exp.cc
+++ b/graphics/asymptote/exp.cc
@@ -888,10 +888,10 @@ void callExp::reportMismatch(function *ft, signature *source)
em << "without parameters";
break;
case 1:
- em << "with parameter '" << *source << "'";
+ em << "with parameter '" << toString(*source) << "'";
break;
default:
- em << "with parameters\n'" << *source << "'";
+ em << "with parameters\n'" << toString(*source) << "'";
}
}