summaryrefslogtreecommitdiff
path: root/vala/valadatatype.vala
diff options
context:
space:
mode:
Diffstat (limited to 'vala/valadatatype.vala')
-rw-r--r--vala/valadatatype.vala4
1 files changed, 2 insertions, 2 deletions
diff --git a/vala/valadatatype.vala b/vala/valadatatype.vala
index 9f612fa17..a7ba03856 100644
--- a/vala/valadatatype.vala
+++ b/vala/valadatatype.vala
@@ -693,11 +693,11 @@ public abstract class Vala.DataType : CodeNode {
if ((!allow_none || n_type_args > 0) && n_type_args < expected_n_type_args) {
error = true;
- Report.error (source_reference, "too few type arguments for `%s'", type_symbol.get_full_name ());
+ Report.error (source_reference, "too few type arguments for `%s'", type_symbol.to_string ());
return false;
} else if ((!allow_none || n_type_args > 0) && n_type_args > expected_n_type_args) {
error = true;
- Report.error (source_reference, "too many type arguments for `%s'", type_symbol.get_full_name ());
+ Report.error (source_reference, "too many type arguments for `%s'", type_symbol.to_string ());
return false;
}