You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by "pkarashchenko (via GitHub)" <gi...@apache.org> on 2023/02/28 08:52:11 UTC

[GitHub] [nuttx] pkarashchenko commented on a diff in pull request #8641: stdio: Implement simple buffered out stream for vdprintf

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


##########
include/nuttx/streams.h:
##########
@@ -217,6 +217,14 @@ struct lib_rawsostream_s
   int                    fd;
 };
 
+struct lib_bufferedoutstream_s
+{
+  struct lib_outstream_s  public;
+  struct lib_outstream_s *backend;

Review Comment:
   ```suggestion
     FAR struct lib_outstream_s *backend;
   ```



-- 
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-unsubscribe@nuttx.apache.org

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