summaryrefslogtreecommitdiffstats
path: root/nuttx/libc
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-19 19:53:53 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-19 19:53:53 +0000
commit5035b7378f06c3187cac0308fa8c5a76e2b5baef (patch)
treeee84dbfad28badbe8352b2a877801395b89d38be /nuttx/libc
parent7513c5be902a5df90eebd71a5300014736bb7f88 (diff)
Fix typo introduced into many Makefiles with last changes
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5370 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/libc')
-rw-r--r--nuttx/libc/stdio/lib_fgets.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/libc/stdio/lib_fgets.c b/nuttx/libc/stdio/lib_fgets.c
index c2c98a38b6..35d024ebb0 100644
--- a/nuttx/libc/stdio/lib_fgets.c
+++ b/nuttx/libc/stdio/lib_fgets.c
@@ -150,7 +150,7 @@ char *fgets(FAR char *buf, int buflen, FILE *stream)
if (ch == '\n')
#elif defined(CONFIG_EOL_IS_CR)
if (ch == '\r')
-#elif CONFIG_EOL_IS_EITHER_CRLF
+#else /* elif CONFIG_EOL_IS_EITHER_CRLF */
if (ch == '\n' || ch == '\r')
#endif
{