diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2012-05-17 19:56:27 -0700 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2012-05-17 19:58:02 -0700 |
commit | addd756348ee6271da8198f4eec955954e149a34 (patch) | |
tree | 92ae216157cf7ff8fd8d03962f82573f7370d7ca | |
parent | 37805e01977d983d52802cb85701e0453583924f (diff) | |
download | ofono-addd756348ee6271da8198f4eec955954e149a34.tar.bz2 |
gdbus: Constify introspection method table
-rw-r--r-- | gdbus/object.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdbus/object.c b/gdbus/object.c index e378074e..0ef6c80e 100644 --- a/gdbus/object.c +++ b/gdbus/object.c @@ -496,7 +496,7 @@ done: g_free(parent_path); } -static GDBusMethodTable introspect_methods[] = { +static const GDBusMethodTable introspect_methods[] = { { "Introspect", "", "s", introspect }, { } }; |