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

Commit 578aeb53 authored by Santiago Seifert's avatar Santiago Seifert
Browse files

Fix conditional log line in MediaPlayerService

Bug: 226269879
Change-Id: Ica5efa418d37ada5d5516f3a1026b6c285ad6e12
Test: Fixes compilation when debugging is enabled
parent 437545bd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2683,7 +2683,7 @@ size_t MediaPlayerService::AudioOutput::CallbackData::onMoreData(const AudioTrac
    // This is a benign busy-wait, with the next data request generated 10 ms or more later;
    // nevertheless for power reasons, we don't want to see too many of these.

    ALOGV_IF(actualSize == 0 && buffer->size > 0, "callbackwrapper: empty buffer returned");
    ALOGV_IF(actualSize == 0 && buffer.size() > 0, "callbackwrapper: empty buffer returned");
    unlock();
    return actualSize;
}