From 51260011ba85dd7ffccaafbcafc843c422c7a29c Mon Sep 17 00:00:00 2001 From: Seungbae Shin Date: Wed, 29 Aug 2018 11:36:54 +0900 Subject: [PATCH] fixup! fixup! Revise testsuite - fix 64bit build error Change-Id: I810075a6bf0e70a0d608139c2044ce03d5dfc91f --- test/audio_io_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/audio_io_test.c b/test/audio_io_test.c index 7aad53d..81e7230 100644 --- a/test/audio_io_test.c +++ b/test/audio_io_test.c @@ -124,7 +124,7 @@ static void _audio_out_stream_cb(audio_out_h handle, size_t nbytes, void *user_d read_bytes = fread(buf, 1, nbytes, fp); written = audio_out_write(handle, buf, read_bytes); - printf("written : %6d/%6d (requested %u)\n", written, read_bytes, nbytes); + printf("written : %6d/%6d (requested %zu)\n", written, read_bytes, nbytes); if (read_bytes < nbytes) { printf("EOS!!!!\n"); -- 2.34.1