This is an automated email from the ASF dual-hosted git repository.

cederom pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git

commit adb4c3b5556cd6512b99a2c355c1956323d3a281
Author: Xiang Xiao <[email protected]>
AuthorDate: Thu Dec 19 01:12:55 2024 +0800

    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 <[email protected]>
---
 testing/testsuites/kernel/fs/cases/fs_fsync_test.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/testing/testsuites/kernel/fs/cases/fs_fsync_test.c 
b/testing/testsuites/kernel/fs/cases/fs_fsync_test.c
index 2518da2b7..5ea5fbe7e 100644
--- a/testing/testsuites/kernel/fs/cases/fs_fsync_test.c
+++ b/testing/testsuites/kernel/fs/cases/fs_fsync_test.c
@@ -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 */
 

Reply via email to