1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 14:33:52 +01:00

Merge pull request #3919 from authmillenon/examples/fix/gnrc-networking-output

examples/gnrc_networking: address output according to RFC 3986 and 5952
This commit is contained in:
Martine Lenders 2015-09-22 06:38:38 +02:00
commit 00a0c90269

View File

@ -81,7 +81,7 @@ static void send(char *addr_str, char *port_str, char *data, unsigned int num,
gnrc_pktbuf_release(ip);
return;
}
printf("Success: send %u byte to %s:%u\n", (unsigned)payload->size,
printf("Success: send %u byte to [%s]:%u\n", (unsigned)payload->size,
addr_str, tmp);
vtimer_usleep(delay);
}