Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 66fc72b0 authored by Mike J. Chen's avatar Mike J. Chen
Browse files

Fix warning "comparison is always true due to limited range of data type"



Change-Id: I1d59e67f507e676513aa006f265cca9179b7c2fe
Signed-off-by: default avatarMike J. Chen <mjchen@google.com>
parent 292d2fcb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1120,7 +1120,7 @@ void btm_reset_ctrlr_complete ()
    btu_stop_timer (&btm_cb.devcb.reset_timer);

    /* find the highest feature page number which contains non-zero bits */
    for (i = HCI_EXT_FEATURES_PAGE_MAX; i >= 0; i--)
    for (i = HCI_EXT_FEATURES_PAGE_MAX; ; i--)
    {
        for (j = 0; j < HCI_FEATURE_BYTES_PER_PAGE; j++)
        {