xiaoxiang781216 commented on PR #15046: URL: https://github.com/apache/nuttx/pull/15046#issuecomment-2517653730
let's ignore the ci error since it's fixed by https://github.com/apache/nuttx/pull/15047: ``` In file included from bluetooth/bt_conn.c:51: bluetooth/bt_conn.c: In function 'bt_conn_addref': Error: bluetooth/bt_conn.c:765:10: error: format '%u' expects argument of type 'unsigned int', but argument 4 has type 'bt_atomic_t' {aka 'long int'} [-Werror=format=] 765 | wlinfo("handle %u ref %u\n", conn->handle, bt_atomic_get(&conn->ref)); | ^~~~~~~~~~~~~~~~~~~~ bluetooth/bt_conn.c:765:26: note: format string is defined here 765 | wlinfo("handle %u ref %u\n", conn->handle, bt_atomic_get(&conn->ref)); | ~^ | | | unsigned int | %lu bluetooth/bt_conn.c: In function 'bt_conn_release': Error: bluetooth/bt_conn.c:790:10: error: format '%u' expects argument of type 'unsigned int', but argument 4 has type 'bt_atomic_t' {aka 'long int'} [-Werror=format=] 790 | wlinfo("handle %u ref %u\n", conn->handle, bt_atomic_get(&conn->ref)); | ^~~~~~~~~~~~~~~~~~~~ bluetooth/bt_conn.c:790:26: note: format string is defined here 790 | wlinfo("handle %u ref %u\n", conn->handle, bt_atomic_get(&conn->ref)); | ~^ | | | unsigned int | %lu ``` -- 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