summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Georg <mail@jensge.org>2021-12-30 15:15:45 +0100
committerJens Georg <mail@jensge.org>2021-12-30 16:59:19 +0100
commit51c48fd9143c4f5e77ca111fe4266167c1f71c13 (patch)
tree76befcb865cbbb82a979af0c1b1fd3f0fdd724cd
parent6b13ea26ae0330adbc7b7c67733f27a4b44de820 (diff)
downloadgupnp-51c48fd9143c4f5e77ca111fe4266167c1f71c13.tar.gz
Errors: Fix quark for ServiceIntrospectionError
-rw-r--r--libgupnp/gupnp-error.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgupnp/gupnp-error.c b/libgupnp/gupnp-error.c
index 2ef5ff1..b30c971 100644
--- a/libgupnp/gupnp-error.c
+++ b/libgupnp/gupnp-error.c
@@ -120,7 +120,7 @@ gupnp_service_introspection_error_quark (void)
static GQuark quark = 0;
if (!quark)
- quark = g_quark_from_static_string ("gupnp-root-device-error");
+ quark = g_quark_from_static_string ("gupnp-service-introspection-error");
return quark;
}