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: Simon Goldschmidt
Subject: [lwip-commits] [SCM] lwIP - A Lightweight TCPIP stack branch, master, updated. e4c01a064e051d11bd621e37d9006220e3923ff2
Date: Mon, 8 Aug 2016 07:06:21 +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  e4c01a064e051d11bd621e37d9006220e3923ff2 (commit)
      from  08378b7d4bbc97700a99588a4e3181102436a4ce (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 e4c01a064e051d11bd621e37d9006220e3923ff2
Author: Axel Lin <address@hidden>
Date:   Mon Aug 8 14:21:23 2016 +0800

    mem: Include stdlib.h to fix build warnings when MEM_LIBC_MALLOC is set
    
    Include stdlib.h to fix below build warnings when MEM_LIBC_MALLOC is set:
    src/core/mem.c:119:3: warning: implicit declaration of function 'malloc' 
[-Wimplicit-function-declaration]
       void* ret = mem_clib_malloc(size + MEM_LIBC_STATSHELPER_SIZE);
       ^
    src/core/mem.c:96:25: warning: incompatible implicit declaration of 
built-in function 'malloc'
     #define mem_clib_malloc malloc
                             ^
    src/core/mem.c:119:15: note: in expansion of macro 'mem_clib_malloc'
       void* ret = mem_clib_malloc(size + MEM_LIBC_STATSHELPER_SIZE);
                   ^
    src/core/mem.c: In function 'mem_free':
    src/core/mem.c:146:3: warning: implicit declaration of function 'free' 
[-Wimplicit-function-declaration]
       mem_clib_free(rmem);
       ^
    src/core/mem.c:93:23: warning: incompatible implicit declaration of 
built-in function 'free'
     #define mem_clib_free free
                           ^
    src/core/mem.c:146:3: note: in expansion of macro 'mem_clib_free'
       mem_clib_free(rmem);
       ^
    
    Signed-off-by: Axel Lin <address@hidden>

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

Summary of changes:
 src/include/lwip/mem.h |    1 +
 1 file changed, 1 insertion(+)


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



reply via email to

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