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 /plugins | |
parent | 271ca983b3576a16f5685832c1e405bce8c15f44 (diff) | |
download | connman-943cffdfb0b70d22bcc3513f425398ee7cdd196f.tar.gz connman-943cffdfb0b70d22bcc3513f425398ee7cdd196f.tar.bz2 connman-943cffdfb0b70d22bcc3513f425398ee7cdd196f.zip |
Constify GDBus method tables
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/nmcompat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/nmcompat.c b/plugins/nmcompat.c index 2244c840..70376489 100644 --- a/plugins/nmcompat.c +++ b/plugins/nmcompat.c @@ -220,7 +220,7 @@ static DBusMessage *property_get(DBusConnection *conn, "Unsupported property"); } -static GDBusMethodTable methods[] = { +static const GDBusMethodTable methods[] = { { "Get", "ss", "v", property_get }, { }, }; |