You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by GitBox <gi...@apache.org> on 2022/10/30 19:03:23 UTC

[GitHub] [incubator-nuttx-apps] xiaoxiang781216 opened a new pull request, #1391: Fix the compiler warning

xiaoxiang781216 opened a new pull request, #1391:
URL: https://github.com/apache/incubator-nuttx-apps/pull/1391

   ## Summary
   ```
   Error: discover.c:210:13: error: format '%lx' expects argument of type 'long unsigned int', but argument 3 has type 'in_addr_t' {aka 'unsigned int'} [-Werror=format=]
     210 |       ninfo("Received discover from %08lx'\n", srcaddr.sin_addr.s_addr);
         |             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~  ~~~~~~~~~~~~~~~~~~~~~~~
         |                                                                |
         |                                                                in_addr_t {aka unsigned int}
   discover.c:210:41: note: format string is defined here
     210 |       ninfo("Received discover from %08lx'\n", srcaddr.sin_addr.s_addr);
         |                                     ~~~~^
         |                                         |
         |                                         long unsigned int
         |                                     %08x
   In file included from discover.c:25:
   discover.c: In function 'discover_openlistener':
   Error: discover.c:359:9: error: format '%lx' expects argument of type 'long unsigned int', but argument 3 has type 'uint32_t' {aka 'unsigned int'} [-Werror=format=]
     359 |   ninfo("serverip: %08lx\n", ntohl(g_state.serverip));
         |         ^~~~~~~~~~~~~~~~~~~  ~~~~~~~~~~~~~~~~~~~~~~~
         |                              |
         |                              uint32_t {aka unsigned int}
   discover.c:359:24: note: format string is defined here
     359 |   ninfo("serverip: %08lx\n", ntohl(g_state.serverip));
         |                    ~~~~^
         |                        |
         |                        long unsigned int
         |                    %08x
   ```
   
   ## Impact
   Minor
   
   ## Testing
   Pass CI
   


-- 
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


[GitHub] [incubator-nuttx-apps] pkarashchenko merged pull request #1391: Fix the compiler warning

Posted by GitBox <gi...@apache.org>.
pkarashchenko merged PR #1391:
URL: https://github.com/apache/incubator-nuttx-apps/pull/1391


-- 
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