summaryrefslogtreecommitdiff
path: root/nuttx/libc/stdio/lib_lowinstream.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/libc/stdio/lib_lowinstream.c')
-rw-r--r--nuttx/libc/stdio/lib_lowinstream.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/libc/stdio/lib_lowinstream.c b/nuttx/libc/stdio/lib_lowinstream.c
index 7284601e8..8c11fee90 100644
--- a/nuttx/libc/stdio/lib_lowinstream.c
+++ b/nuttx/libc/stdio/lib_lowinstream.c
@@ -65,7 +65,7 @@ static int lowinstream_getc(FAR struct lib_instream_s *this)
/* Get the next character from the incoming stream */
- ret = up_getc(ch)
+ ret = up_getc(ch);
if (ret != EOF)
{
this->nget++;