From 22b12e17a6d59429d7dee35fbec6de03a588fe82 Mon Sep 17 00:00:00 2001 From: anjiahao Date: Thu, 19 Dec 2024 09:09:25 +0800 Subject: [PATCH] procfs:add missing ',' to end of line Signed-off-by: anjiahao --- 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);