mirror of
https://gitlab.gnome.org/GNOME/calls.git
synced 2025-01-08 04:45:31 +00:00
mm: call: Use correct enum type
They both have the same value (=0), and things worked because of implicit conversion, but was still confusing and technically wrong.
This commit is contained in:
parent
654664799b
commit
07aa990601
1 changed files with 1 additions and 1 deletions
|
@ -273,7 +273,7 @@ constructed (GObject *object)
|
||||||
|
|
||||||
state = mm_call_get_state (self->mm_call);
|
state = mm_call_get_state (self->mm_call);
|
||||||
state_changed_cb (self,
|
state_changed_cb (self,
|
||||||
MM_MODEM_STATE_UNKNOWN,
|
MM_CALL_STATE_UNKNOWN,
|
||||||
state,
|
state,
|
||||||
mm_call_get_state_reason (self->mm_call));
|
mm_call_get_state_reason (self->mm_call));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue