summaryrefslogtreecommitdiff
path: root/vala/valaintegertype.vala
diff options
context:
space:
mode:
Diffstat (limited to 'vala/valaintegertype.vala')
-rw-r--r--vala/valaintegertype.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/vala/valaintegertype.vala b/vala/valaintegertype.vala
index 5b1caa024..953958667 100644
--- a/vala/valaintegertype.vala
+++ b/vala/valaintegertype.vala
@@ -30,7 +30,7 @@ public class Vala.IntegerType : ValueType {
string? literal_type_name;
public IntegerType (Struct type_symbol, string? literal_value = null, string? literal_type_name = null) {
- this.type_symbol = type_symbol;
+ base (type_symbol);
this.literal_value = literal_value;
this.literal_type_name = literal_type_name;
}