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

Commit e85da44a authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "hal: update timestamp type"

parents 8283a6d6 90717e2d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5076,7 +5076,7 @@ static int out_get_mmap_position(const struct audio_stream_out *stream,
        ALOGE("%s: %s", __func__, pcm_get_error(out->pcm));
        return ret;
    }
    position->time_nanoseconds = ts.tv_sec*1000000000L + ts.tv_nsec;
    position->time_nanoseconds = ts.tv_sec*1000000000LL + ts.tv_nsec;
    return 0;
}