mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-28 15:40:10 +01:00
modem: remove unused variadic argument when emitting NM_MODEM_STATE_CHANGED signal
The signal only has two arguments, no reason.
This commit is contained in:
parent
42f60e30ad
commit
9a8f8e8a89
1 changed files with 1 additions and 1 deletions
|
|
@ -158,7 +158,7 @@ nm_modem_set_state (NMModem *self,
|
|||
|
||||
priv->state = new_state;
|
||||
_notify (self, PROP_STATE);
|
||||
g_signal_emit (self, signals[STATE_CHANGED], 0, (int) new_state, (int) old_state, reason);
|
||||
g_signal_emit (self, signals[STATE_CHANGED], 0, (int) new_state, (int) old_state);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue