pkarashchenko commented on code in PR #7715:
URL: https://github.com/apache/nuttx/pull/7715#discussion_r1033191940


##########
libs/libc/stream/lib_blkoutstream.c:
##########
@@ -127,6 +127,16 @@ static int blkoutstream_puts(FAR struct lib_outstream_s 
*this,
   return len;
 }
 
+/****************************************************************************
+ * Name: blkoutstream_putc
+ ****************************************************************************/
+
+static void blkoutstream_putc(FAR struct lib_outstream_s *this, int ch)

Review Comment:
   Why not
   
   ```suggestion
   static void blkoutstream_put(FAR struct lib_outstream_s *this, int ch)
   ```
   ?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to