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

Commit 3478eaa2 authored by John Grossman's avatar John Grossman
Browse files

Fix a small build warning.

Change-Id: I2b228db8f11a829399cdc6efe67d7b6e0a1917ba
parent 6fb082ae
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -261,7 +261,8 @@ int64_t TimedTextPlayer::delayUsFromCurrentTime(int64_t fireTimeUs) {
    sp<MediaPlayerBase> listener = mListener.promote();
    if (listener == NULL) {
        // TODO: it may be better to return kInvalidTimeUs
        ALOGE("%s: Listener is NULL.", __FUNCTION__, fireTimeUs);
        ALOGE("%s: Listener is NULL. (fireTimeUs = %lld)",
              __FUNCTION__, fireTimeUs);
        return 0;
    }
    int32_t positionMs = 0;