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

Commit 06e939be authored by Bryan Eyler's avatar Bryan Eyler
Browse files

Fix log format specifier.

size() returns size_t.

Change-Id: I015b407e26e2be9933558e9f8e2f6c02eba6568a
parent cd7bc8ff
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -138,7 +138,7 @@ int SoundTriggerHalImpl::doLoadSoundModel(const ISoundTriggerHw::SoundModel& sou
        } while (mClients.valueFor(*modelId) != 0 && *modelId != 0);
    }
    LOG_ALWAYS_FATAL_IF(*modelId == 0,
                        "wrap around in sound model IDs, num loaded models %d", mClients.size());
                        "wrap around in sound model IDs, num loaded models %zu", mClients.size());

    client = new SoundModelClient(*modelId, callback, cookie);