From: Bartosz Golaszewski Date: Wed, 1 Feb 2023 08:29:12 +0000 (+0100) Subject: tests: add a missing call to parent's implementation of .constructed() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=cc8495f45579c31f2f95885a6dfb5287b93b8041;p=qemu-gpiodev%2Flibgpiod.git tests: add a missing call to parent's implementation of .constructed() 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 --- diff --git a/tests/gpiod-test-sim.c b/tests/gpiod-test-sim.c index 9029382..50003b5 100644 --- a/tests/gpiod-test-sim.c +++ b/tests/gpiod-test-sim.c @@ -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,