Style: if statement

This commit is contained in:
Denis Kenzior 2010-02-10 13:14:27 -06:00
parent 813470a025
commit 4b81513d95
1 changed files with 3 additions and 2 deletions

View File

@ -198,8 +198,9 @@ static DBusMessage *voicecall_get_properties(DBusConnection *conn,
DBUS_TYPE_STRING, &callerid);
if (call->status == CALL_STATUS_ACTIVE ||
(call->status == CALL_STATUS_DISCONNECTED && v->start_time != 0) ||
call->status == CALL_STATUS_HELD) {
call->status == CALL_STATUS_HELD ||
(call->status == CALL_STATUS_DISCONNECTED &&
v->start_time != 0)) {
timestr = time_to_str(&v->start_time);
ofono_dbus_dict_append(&dict, "StartTime", DBUS_TYPE_STRING,