lwip-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lwip-commits] [SCM] lwIP - A Lightweight TCPIP stack branch, master, up


From: Sylvain Rochet
Subject: [lwip-commits] [SCM] lwIP - A Lightweight TCPIP stack branch, master, updated. master_at_STABLE-2_0_0-85-ga83c4e0
Date: Fri, 9 Dec 2016 13:27:41 +0000 (UTC)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "lwIP - A Lightweight TCPIP stack".

The branch, master has been updated
       via  a83c4e089706b3374e796f3f97892051ab2a38b3 (commit)
      from  ac4d99424971b46be34d362907ecf9ddf20a024c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit a83c4e089706b3374e796f3f97892051ab2a38b3
Author: Sylvain Rochet <address@hidden>
Date:   Fri Dec 9 14:11:21 2016 +0100

    PPP: fix build warning on wrong cast from void* to unsigned long
    
    ppp/utils.c: In function 'ppp_vslprintf':
    ppp/utils.c:251:12: error: cast from pointer to integer of different size 
[-Werror=pointer-to-int-cast]
         val = (unsigned long) va_arg(args, void *);
         ^
    
    This is because a void* type is casted into an unsigned long type,
    which obviously isn't correct on LLP64 systems such as Windows.
    
    Actually, we are not using %p, thus we remove %p support completely
    instead of trying to fix the issue in unused code.

-----------------------------------------------------------------------

Summary of changes:
 src/netif/ppp/utils.c |    2 ++
 1 file changed, 2 insertions(+)


hooks/post-receive
-- 
lwIP - A Lightweight TCPIP stack



reply via email to

[Prev in Thread] Current Thread [Next in Thread]