]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
Fix criticals due to commit a31a2a77dd60e70137448751
authorLuca Bruno <lucabru@src.gnome.org>
Sun, 9 Jun 2013 19:36:32 +0000 (21:36 +0200)
committerLuca Bruno <lucabru@src.gnome.org>
Sun, 9 Jun 2013 19:36:32 +0000 (21:36 +0200)
codegen/valagsignalmodule.vala

index 2e823162c83e4750c5d699db8967948316c82f69..a350edd86c7df3220ffeb64f3679253a4a800149 100644 (file)
@@ -54,7 +54,7 @@ public class Vala.GSignalModule : GObjectModule {
                        return "gpointer";
                } else if (t is VoidType) {
                        return "void";
-               } else if (get_ccode_type_id (t.data_type) == get_ccode_type_id (string_type.data_type)) {
+               } else if (get_ccode_type_id (t) == get_ccode_type_id (string_type)) {
                        return "const char*";
                } else if (t.data_type is Class || t.data_type is Interface) {
                        return "gpointer";