summaryrefslogtreecommitdiff
path: root/nuttx/lib/stdio/lib_rawoutstream.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/lib/stdio/lib_rawoutstream.c')
-rw-r--r--nuttx/lib/stdio/lib_rawoutstream.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/lib/stdio/lib_rawoutstream.c b/nuttx/lib/stdio/lib_rawoutstream.c
index b4a20958b..6adf9b53d 100644
--- a/nuttx/lib/stdio/lib_rawoutstream.c
+++ b/nuttx/lib/stdio/lib_rawoutstream.c
@@ -72,7 +72,7 @@ static void rawoutstream_putc(FAR struct lib_outstream_s *this, int ch)
/* The only expected error is EINTR, meaning that the write operation
* was awakened by a signal. Zero would not be a valid return value
- * either.
+ * from write().
*/
DEBUGASSERT(nwritten < 0 && get_errno() == EINTR);