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
diff --git a/hal/audio_extn/ffv.c b/hal/audio_extn/ffv.c
index e0f3312..145a017 100755
--- a/hal/audio_extn/ffv.c
+++ b/hal/audio_extn/ffv.c
@@ -828,7 +828,7 @@
     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