testing/testsuites: Fix format '%llu' expects argument of type 'long long unsigned int', but argument 3 has type 'size_t'

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
Xiang Xiao
2024-12-19 01:12:55 +08:00
committed by CeDeROM
parent cebd77c614
commit adb4c3b555

View File

@@ -137,8 +137,8 @@ void test_nuttx_fs_fsync02(FAR void **state)
}
#endif
syslog(LOG_INFO, "the fbsize = %"PRIu64",buffer size=%d\n",
statfsbuf.f_bsize, bufsize);
syslog(LOG_INFO, "the fbsize = %zu,buffer size=%d\n",
statfsbuf.f_bsize, bufsize);
/* malloc memory */