mirror of
https://github.com/apache/nuttx-apps.git
synced 2025-10-18 00:11:20 +08:00
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:
@@ -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 */
|
||||
|
||||
|
Reference in New Issue
Block a user