You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by pk...@apache.org on 2022/10/24 07:04:38 UTC

[incubator-nuttx-apps] branch master updated: wireless: gs2200m: Change usrsock xid from uint64_t to uint32_t

This is an automated email from the ASF dual-hosted git repository.

pkarashchenko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git


The following commit(s) were added to refs/heads/master by this push:
     new 2717ba4f8 wireless: gs2200m: Change usrsock xid from uint64_t to uint32_t
2717ba4f8 is described below

commit 2717ba4f88f52e5492f2075772ec1a4bf548095e
Author: SPRESENSE <41...@users.noreply.github.com>
AuthorDate: Mon Oct 24 12:47:46 2022 +0900

    wireless: gs2200m: Change usrsock xid from uint64_t to uint32_t
    
    Fix the type to match usrsock.h has been changed.
---
 wireless/gs2200m/gs2200m_main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/wireless/gs2200m/gs2200m_main.c b/wireless/gs2200m/gs2200m_main.c
index d1bbdfdf5..f678050e9 100644
--- a/wireless/gs2200m/gs2200m_main.c
+++ b/wireless/gs2200m/gs2200m_main.c
@@ -244,7 +244,7 @@ static int _write_to_usock(int fd, void *buf, size_t count)
 
 static int _send_ack_common(int fd,
                             uint16_t events,
-                            uint64_t xid,
+                            uint32_t xid,
                             FAR struct usrsock_message_req_ack_s *resp)
 {
   resp->head.msgid  = USRSOCK_MESSAGE_RESPONSE_ACK;