pkarashchenko commented on code in PR #7716: URL: https://github.com/apache/nuttx/pull/7716#discussion_r1034325994
########## libs/libc/stdio/lib_libvsprintf.c: ########## @@ -871,37 +872,29 @@ static int vsprintf_internal(FAR struct lib_outstream_s *stream, } lib_stream_put(stream, ndigs); - for (ndigs = '0'; exp >= 10; exp -= 10) + __ultoa_invert(exp, (FAR char *) buf, 10); Review Comment: ```suggestion __ultoa_invert(exp, (FAR char *)buf, 10); ``` -- 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