net: contiki: Fix ICMPv6 error message debug print
There were no spaces around printed IPv6 address which makes it hard to read. Change-Id: Ia5f8dad7d21fe8a9a4feb9976b1a90fe624102ab Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
This commit is contained in:
parent
59359595fe
commit
d51288a4e1
1 changed files with 2 additions and 2 deletions
|
@ -285,9 +285,9 @@ uip_icmp6_error_output(struct net_buf *buf, uint8_t type, uint8_t code, uint32_t
|
|||
|
||||
UIP_STAT(++uip_stat.icmp.sent);
|
||||
|
||||
PRINTF("Sending ICMPv6 ERROR message type %d code %d to", type, code);
|
||||
PRINTF("Sending ICMPv6 ERROR message type %d code %d to ", type, code);
|
||||
PRINT6ADDR(&UIP_IP_BUF(buf)->destipaddr);
|
||||
PRINTF("from");
|
||||
PRINTF(" from ");
|
||||
PRINT6ADDR(&UIP_IP_BUF(buf)->srcipaddr);
|
||||
PRINTF("\n");
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue