From 711371a855a36525efc275504336bc2cec8aac2f Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Fri, 13 Nov 2020 15:46:09 +0900 Subject: [PATCH] fs/procfs/fs_procfsiobinfo.c: Appease nxstyle --- fs/procfs/fs_procfsiobinfo.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/fs/procfs/fs_procfsiobinfo.c b/fs/procfs/fs_procfsiobinfo.c index 44e7486a080..72fe6977e7f 100644 --- a/fs/procfs/fs_procfsiobinfo.c +++ b/fs/procfs/fs_procfsiobinfo.c @@ -294,7 +294,7 @@ static ssize_t iobinfo_read(FAR struct file *filep, FAR char *buffer, /* The first line is the headers */ linesize = snprintf(iobfile->line, IOBINFO_LINELEN, - " TOTAL TOTAL\n"); + " TOTAL TOTAL\n"); copysize = procfs_memcpy(iobfile->line, linesize, buffer, buflen, &offset); @@ -306,7 +306,8 @@ static ssize_t iobinfo_read(FAR struct file *filep, FAR char *buffer, buflen -= copysize; linesize = snprintf(iobfile->line, IOBINFO_LINELEN, - " USER CONSUMED PRODUCED\n"); + " USER CONSUMED " + "PRODUCED\n"); copysize = procfs_memcpy(iobfile->line, linesize, buffer, buflen, &offset);