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

Commit 8d1b8c81 authored by Dhanalakshmi Siddani's avatar Dhanalakshmi Siddani
Browse files

hal: Fix compilation error in ffv

- Compilation error is seen due to incorrect format specifier used.
- Use proper format specifier to fix the issue.

CRs-Fixed: 2225936
Change-Id: Ifb20d6957b751c503ba1564b4a6371b7b1b52760
parent aa3374fc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -828,7 +828,7 @@ int32_t audio_extn_ffv_read(struct audio_stream_in *stream __unused,
    bytes_to_copy = (bytes <= out_buf_size) ? bytes : out_buf_size;
    memcpy(buffer, process_out_ptr, bytes_to_copy);
    if (bytes_to_copy != out_buf_size)
        ALOGD("%s: out buffer data dropped, copied %zd bytes",
        ALOGD("%s: out buffer data dropped, copied %zu bytes",
               __func__, bytes_to_copy);

#ifdef FFV_PCM_DUMP