From: Seungbae Shin Date: Wed, 29 Aug 2018 02:36:54 +0000 (+0900) Subject: fixup! fixup! Revise testsuite X-Git-Tag: submit/tizen/20180831.111337^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F42%2F187842%2F1;p=platform%2Fcore%2Fapi%2Faudio-io.git fixup! fixup! Revise testsuite - fix 64bit build error Change-Id: I810075a6bf0e70a0d608139c2044ce03d5dfc91f --- 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");