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

xiaoxiang pushed a commit to branch releases/12.8
in repository https://gitbox.apache.org/repos/asf/nuttx.git

commit 22b12e17a6d59429d7dee35fbec6de03a588fe82
Author: anjiahao <[email protected]>
AuthorDate: Thu Dec 19 09:09:25 2024 +0800

    procfs:add missing ',' to end of line
    
    Signed-off-by: anjiahao <[email protected]>
---
 fs/procfs/fs_procfsmeminfo.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/procfs/fs_procfsmeminfo.c b/fs/procfs/fs_procfsmeminfo.c
index f2a07cb827..df4b11595f 100644
--- a/fs/procfs/fs_procfsmeminfo.c
+++ b/fs/procfs/fs_procfsmeminfo.c
@@ -395,7 +395,7 @@ static ssize_t meminfo_read(FAR struct file *filep, FAR 
char *buffer,
                                    (unsigned long)progmem.fordblks,
                                    (unsigned long)progmem.mxordblk,
                                    (unsigned long)progmem.aordblks,
-                                   (unsigned long)progmem.ordblks
+                                   (unsigned long)progmem.ordblks,
                                    "Prog");
       copysize   = procfs_memcpy(procfile->line, linesize, buffer, buflen,
                                  &offset);

Reply via email to