fs/procfs/fs_procfsiobinfo.c: Correct use of C11 features in common code.

This commit is contained in:
Gregory Nutt 2019-08-24 17:51:05 -06:00
parent 13fd8e27b6
commit b41093b020
1 changed files with 2 additions and 1 deletions

View File

@ -278,6 +278,7 @@ static ssize_t iobinfo_read(FAR struct file *filep, FAR char *buffer,
size_t copysize;
size_t totalsize;
off_t offset;
int i;
finfo("buffer=%p buflen=%d\n", buffer, (int)buflen);
@ -313,7 +314,7 @@ static ssize_t iobinfo_read(FAR struct file *filep, FAR char *buffer,
/* Loop through each IOB user printing the usage statistics */
for (int i = 0; i < IOBUSER_GLOBAL; i++)
for (i = 0; i < IOBUSER_GLOBAL; i++)
{
if (totalsize < buflen)
{