1
0
Fork 0
forked from nuttx/nuttx-update

procfs:add missing ',' to end of line

Signed-off-by: anjiahao <anjiahao@xiaomi.com>
This commit is contained in:
anjiahao 2024-12-19 09:09:25 +08:00 committed by Xiang Xiao
parent b4e5c74319
commit 20a0eb1064

View file

@ -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);