Skip to content

Commit adb4c3b

Browse files
xiaoxiang781216cederom
authored andcommitted
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>
1 parent cebd77c commit adb4c3b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

testing/testsuites/kernel/fs/cases/fs_fsync_test.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,8 @@ void test_nuttx_fs_fsync02(FAR void **state)
137137
}
138138

139139
#endif
140-
syslog(LOG_INFO, "the fbsize = %"PRIu64",buffer size=%d\n",
141-
statfsbuf.f_bsize, bufsize);
140+
syslog(LOG_INFO, "the fbsize = %zu,buffer size=%d\n",
141+
statfsbuf.f_bsize, bufsize);
142142

143143
/* malloc memory */
144144

0 commit comments

Comments
 (0)