diff options
author | Henrique Dante de Almeida <hdante@profusion.mobi> | 2012-05-18 17:30:02 -0300 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2012-05-18 15:02:37 -0700 |
commit | 943cffdfb0b70d22bcc3513f425398ee7cdd196f (patch) | |
tree | 52747d13466e057a69a6a5437d4ce741199d6140 /unit | |
parent | 271ca983b3576a16f5685832c1e405bce8c15f44 (diff) | |
download | connman-943cffdfb0b70d22bcc3513f425398ee7cdd196f.tar.gz connman-943cffdfb0b70d22bcc3513f425398ee7cdd196f.tar.bz2 connman-943cffdfb0b70d22bcc3513f425398ee7cdd196f.zip |
Constify GDBus method tables
Diffstat (limited to 'unit')
-rw-r--r-- | unit/session-api.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unit/session-api.c b/unit/session-api.c index ce07d147..c5b7b6ce 100644 --- a/unit/session-api.c +++ b/unit/session-api.c @@ -285,7 +285,7 @@ static DBusMessage *notify_update(DBusConnection *conn, return g_dbus_create_reply(msg, DBUS_TYPE_INVALID); } -static GDBusMethodTable notify_methods[] = { +static const GDBusMethodTable notify_methods[] = { { "Release", "", "", notify_release }, { "Update", "a{sv}", "", notify_update }, { }, |