mirror of
https://gitlab.gnome.org/GNOME/calls.git
synced 2024-12-13 16:07:36 +00:00
call: Prefer using enum values
This commit is contained in:
parent
4592194c11
commit
1d20998e9a
1 changed files with 1 additions and 1 deletions
|
@ -430,7 +430,7 @@ calls_call_get_state (CallsCall *self)
|
|||
{
|
||||
CallsCallPrivate *priv = calls_call_get_instance_private (self);
|
||||
|
||||
g_return_val_if_fail (CALLS_IS_CALL (self), 0);
|
||||
g_return_val_if_fail (CALLS_IS_CALL (self), CALLS_CALL_STATE_UNKNOWN);
|
||||
|
||||
return priv->state;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue