summaryrefslogtreecommitdiff
path: root/apps/nshlib/nsh_proccmds.c
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-04-13 16:24:28 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-04-13 16:24:28 -0600
commit43ec94a665e13552402ff4f102e0f65f6792cf29 (patch)
tree05da26d1bb5e364c1a388afd54630d5ae3ca4aa7 /apps/nshlib/nsh_proccmds.c
parent70b6bb22af51defd713adfd452309f32f0e523aa (diff)
downloadnuttx-43ec94a665e13552402ff4f102e0f65f6792cf29.tar.gz
nuttx-43ec94a665e13552402ff4f102e0f65f6792cf29.tar.bz2
nuttx-43ec94a665e13552402ff4f102e0f65f6792cf29.zip
More trailing whilespace removal
Diffstat (limited to 'apps/nshlib/nsh_proccmds.c')
-rw-r--r--apps/nshlib/nsh_proccmds.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/apps/nshlib/nsh_proccmds.c b/apps/nshlib/nsh_proccmds.c
index 35010a8ac..399609688 100644
--- a/apps/nshlib/nsh_proccmds.c
+++ b/apps/nshlib/nsh_proccmds.c
@@ -86,15 +86,15 @@ static const char *g_statenames[] =
{
"INVALID ",
"PENDING ",
- "READY ",
- "RUNNING ",
- "INACTIVE",
- "WAITSEM ",
+ "READY ",
+ "RUNNING ",
+ "INACTIVE",
+ "WAITSEM ",
#ifndef CONFIG_DISABLE_MQUEUE
- "WAITSIG ",
+ "WAITSIG ",
#endif
#ifndef CONFIG_DISABLE_MQUEUE
- "MQNEMPTY",
+ "MQNEMPTY",
"MQNFULL "
#endif
};
@@ -182,7 +182,7 @@ static int readfile(FAR const char *filename, FAR char *buffer, size_t buflen)
else
{
/* Successful read. Make sure that the buffer is null terminated */
-
+
DEBUGASSERT(nread <= remaining);
ntotal += nread;
buffer[ntotal] = '\0';
@@ -200,7 +200,7 @@ static int readfile(FAR const char *filename, FAR char *buffer, size_t buflen)
/* Close the file and return. */
close(fd);
- return ret;
+ return ret;
}
#endif