mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-16 23:15:37 +00:00
use const char for name pointers in display functions
This commit is contained in:
parent
88bf9b2380
commit
a45b1bad35
@ -69,7 +69,7 @@ void stats_init(void)
|
|||||||
|
|
||||||
#if LWIP_STATS_DISPLAY
|
#if LWIP_STATS_DISPLAY
|
||||||
void
|
void
|
||||||
stats_display_proto(struct stats_proto *proto, char *name)
|
stats_display_proto(struct stats_proto *proto, const char *name)
|
||||||
{
|
{
|
||||||
LWIP_PLATFORM_DIAG(("\n%s\n\t", name));
|
LWIP_PLATFORM_DIAG(("\n%s\n\t", name));
|
||||||
LWIP_PLATFORM_DIAG(("xmit: %"STAT_COUNTER_F"\n\t", proto->xmit));
|
LWIP_PLATFORM_DIAG(("xmit: %"STAT_COUNTER_F"\n\t", proto->xmit));
|
||||||
@ -110,7 +110,7 @@ stats_display_igmp(struct stats_igmp *igmp)
|
|||||||
|
|
||||||
#if MEM_STATS || MEMP_STATS
|
#if MEM_STATS || MEMP_STATS
|
||||||
void
|
void
|
||||||
stats_display_mem(struct stats_mem *mem, char *name)
|
stats_display_mem(struct stats_mem *mem, const char *name)
|
||||||
{
|
{
|
||||||
LWIP_PLATFORM_DIAG(("\nMEM %s\n\t", name));
|
LWIP_PLATFORM_DIAG(("\nMEM %s\n\t", name));
|
||||||
LWIP_PLATFORM_DIAG(("avail: %"U32_F"\n\t", (u32_t)mem->avail));
|
LWIP_PLATFORM_DIAG(("avail: %"U32_F"\n\t", (u32_t)mem->avail));
|
||||||
|
Loading…
Reference in New Issue
Block a user