From cc8495f45579c31f2f95885a6dfb5287b93b8041 Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Wed, 1 Feb 2023 09:29:12 +0100 Subject: [PATCH] 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 --- tests/gpiod-test-sim.c | 2 ++ 1 file changed, 2 insertions(+) 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, -- 2.30.2