summaryrefslogtreecommitdiff
path: root/vala/valacatchclause.vala
diff options
context:
space:
mode:
Diffstat (limited to 'vala/valacatchclause.vala')
-rw-r--r--vala/valacatchclause.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/vala/valacatchclause.vala b/vala/valacatchclause.vala
index 4ecb79db8..085d2c49b 100644
--- a/vala/valacatchclause.vala
+++ b/vala/valacatchclause.vala
@@ -119,7 +119,7 @@ public class Vala.CatchClause : CodeNode {
if (error_type != null) {
if (!(error_type is ErrorType)) {
- Report.error (source_reference, "clause must catch a valid error type, found `%s' instead".printf (error_type.to_string ()));
+ Report.error (source_reference, "clause must catch a valid error type, found `%s' instead", error_type.to_string ());
error = true;
}