tests: add a missing call to parent's implementation of .constructed()
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Wed, 1 Feb 2023 08:29:12 +0000 (09:29 +0100)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Wed, 1 Feb 2023 08:29:12 +0000 (09:29 +0100)
In GObject inheriting classes must call the parent's implementation of
"virtual" methods manually. Add a missing call to parent's .constructed()
method in the GLib wrapper of libgpiosim.

Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
tests/gpiod-test-sim.c

index 9029382e4a5169b21430a25a62c5d162195dab2e..50003b54b2bf757586381df2fce336d418f8118e 100644 (file)
@@ -53,6 +53,8 @@ static void g_gpiosim_chip_constructed(GObject *obj)
        if (ret)
                g_error("Error while trying to enable the simulated GPIO device: %s",
                        g_strerror(errno));
+
+       G_OBJECT_CLASS(g_gpiosim_chip_parent_class)->constructed(obj);
 }
 
 static void g_gpiosim_chip_get_property(GObject *obj, guint prop_id,