gustavonihei commented on a change in pull request #872: URL: https://github.com/apache/incubator-nuttx-apps/pull/872#discussion_r739804985
########## File path: testing/ostest/aio.c ########## @@ -155,7 +155,7 @@ static int check_done(void) { /* Check if the I/O has completed */ - printf(" list[%d]. result = %d\n", i, aiocbp->aio_result); + printf(" list[%d]. result = %ld\n", i, aiocbp->aio_result); Review comment: ```suggestion printf(" list[%d]. result = %zd\n", i, aiocbp->aio_result); ``` `aio_result` type is `ssize_t`, so I think `z` fits best here. -- 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