From ecba6ad0db357fbc993d0df501f4d289ace61d92 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Thu, 28 Apr 2016 08:04:38 +0000 Subject: [PATCH] fs_procfsproc.c edited online with Bitbucket. Fix problem introduced in last patch --- fs/procfs/fs_procfsproc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/fs/procfs/fs_procfsproc.c b/fs/procfs/fs_procfsproc.c index 84484a593d..f5f6c0397f 100644 --- a/fs/procfs/fs_procfsproc.c +++ b/fs/procfs/fs_procfsproc.c @@ -920,6 +920,7 @@ static ssize_t proc_groupfd(FAR struct proc_file_s *procfile, #if CONFIG_NFILE_DESCRIPTORS > 0 /* Guaranteed to be true */ linesize = snprintf(procfile->line, STATUS_LINELEN, "\n%-3s %-8s %s\n", + "FD", "POS", "OFLAGS"); copysize = procfs_memcpy(procfile->line, linesize, buffer, remaining, &offset); totalsize += copysize;