dbus: Use dbus_bool_t, not int for boolean function arguments
Properties argument specifies whether to add object's properties or not, hence it doesn't need to be int. Signed-off-by: Andrej Shadura <andrew.shadura@collabora.co.uk>
This commit is contained in:
parent
7afbbcd2ed
commit
f5f4c11aa1
1 changed files with 6 additions and 5 deletions
|
@ -128,7 +128,8 @@ void wpas_dbus_unsubscribe_noc(struct wpas_dbus_priv *priv)
|
|||
* Notify listeners about event related with interface
|
||||
*/
|
||||
static void wpas_dbus_signal_interface(struct wpa_supplicant *wpa_s,
|
||||
const char *sig_name, int properties)
|
||||
const char *sig_name,
|
||||
dbus_bool_t properties)
|
||||
{
|
||||
struct wpas_dbus_priv *iface;
|
||||
DBusMessage *msg;
|
||||
|
@ -230,7 +231,7 @@ void wpas_dbus_signal_scan_done(struct wpa_supplicant *wpa_s, int success)
|
|||
*/
|
||||
static void wpas_dbus_signal_bss(struct wpa_supplicant *wpa_s,
|
||||
const char *bss_obj_path,
|
||||
const char *sig_name, int properties)
|
||||
const char *sig_name, dbus_bool_t properties)
|
||||
{
|
||||
struct wpas_dbus_priv *iface;
|
||||
DBusMessage *msg;
|
||||
|
@ -364,7 +365,7 @@ void wpas_dbus_signal_blob_removed(struct wpa_supplicant *wpa_s,
|
|||
*/
|
||||
static void wpas_dbus_signal_network(struct wpa_supplicant *wpa_s,
|
||||
int id, const char *sig_name,
|
||||
int properties)
|
||||
dbus_bool_t properties)
|
||||
{
|
||||
struct wpas_dbus_priv *iface;
|
||||
DBusMessage *msg;
|
||||
|
@ -1882,7 +1883,7 @@ void wpas_dbus_signal_p2p_sd_response(struct wpa_supplicant *wpa_s,
|
|||
*/
|
||||
static void wpas_dbus_signal_persistent_group(struct wpa_supplicant *wpa_s,
|
||||
int id, const char *sig_name,
|
||||
int properties)
|
||||
dbus_bool_t properties)
|
||||
{
|
||||
struct wpas_dbus_priv *iface;
|
||||
DBusMessage *msg;
|
||||
|
@ -4066,7 +4067,7 @@ static const struct wpa_dbus_signal_desc wpas_dbus_p2p_peer_signals[] = {
|
|||
*/
|
||||
static void wpas_dbus_signal_peer(struct wpa_supplicant *wpa_s,
|
||||
const u8 *dev_addr, const char *interface,
|
||||
const char *sig_name, int properties)
|
||||
const char *sig_name, dbus_bool_t properties)
|
||||
{
|
||||
struct wpas_dbus_priv *iface;
|
||||
DBusMessage *msg;
|
||||
|
|
Loading…
Reference in a new issue