From c2e58405ee41190f18d6588c1626ba8dfd2a3a7e Mon Sep 17 00:00:00 2001 From: Slava Monich Date: Sat, 11 Jan 2014 13:32:10 +0200 Subject: include: Be more const-correct in ofono_dbus_* --- include/dbus.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'include') diff --git a/include/dbus.h b/include/dbus.h index e7ccb0b4..3d39eff4 100644 --- a/include/dbus.h +++ b/include/dbus.h @@ -77,29 +77,29 @@ extern "C" { DBusConnection *ofono_dbus_get_connection(void); void ofono_dbus_dict_append(DBusMessageIter *dict, const char *key, int type, - void *value); + const void *value); void ofono_dbus_dict_append_array(DBusMessageIter *dict, const char *key, - int type, void *val); + int type, const void *val); void ofono_dbus_dict_append_dict(DBusMessageIter *dict, const char *key, - int type, void *val); + int type, const void *val); int ofono_dbus_signal_property_changed(DBusConnection *conn, const char *path, const char *interface, const char *name, - int type, void *value); + int type, const void *value); int ofono_dbus_signal_array_property_changed(DBusConnection *conn, const char *path, const char *interface, const char *name, int type, - void *value); + const void *value); int ofono_dbus_signal_dict_property_changed(DBusConnection *conn, const char *path, const char *interface, const char *name, int type, - void *value); + const void *value); #ifdef __cplusplus } -- cgit v1.2.3