gdebugcontrollerdbus: Fix a minor typo in a code example in the docs

Signed-off-by: Philip Withnall <pwithnall@gnome.org>
This commit is contained in:
Philip Withnall 2025-03-04 16:29:23 +00:00
parent 84f555a3aa
commit 4f2877c502
No known key found for this signature in database
GPG Key ID: C5C42CFB268637CA

View File

@ -90,7 +90,7 @@
* debug_controller = G_DEBUG_CONTROLLER (g_debug_controller_dbus_new (priv->connection, NULL, &child_error)); * debug_controller = G_DEBUG_CONTROLLER (g_debug_controller_dbus_new (priv->connection, NULL, &child_error));
* if (debug_controller == NULL) * if (debug_controller == NULL)
* { * {
* g_error ("Could not register debug controller on bus: %s"), * g_error ("Could not register debug controller on bus: %s",
* child_error->message); * child_error->message);
* } * }
* *