Skip to content

Commit

Permalink
[ril] Fix typo. JB#49391
Browse files Browse the repository at this point in the history
  • Loading branch information
d-grigorev authored and monich committed Jun 17, 2020
1 parent 77be0d5 commit 944cd60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ofono/drivers/ril/ril_radio_caps.c
Expand Up @@ -1424,7 +1424,7 @@ static gint ril_caps_manager_sort_requests(gconstpointer a, gconstpointer b)
if (r1->role == RIL_DATA_ROLE_MMS && r2->role != RIL_DATA_ROLE_MMS) {
return -1;
}
if (r1->role != RIL_DATA_ROLE_MMS && r1->role == RIL_DATA_ROLE_MMS) {
if (r1->role != RIL_DATA_ROLE_MMS && r2->role == RIL_DATA_ROLE_MMS) {
return 1;
}
return (int)r2->role - (int)r1->role;
Expand Down

0 comments on commit 944cd60

Please sign in to comment.