1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

sys/net/uhcp: remove unused returned value in uhcp_client

This commit is contained in:
Alexandre Abadie 2019-10-27 19:05:55 +01:00
parent d4adcfd92d
commit a9399810d5
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405

View File

@ -38,6 +38,10 @@ void uhcp_client(uhcp_iface_t iface)
/* create listening socket */
int res = sock_udp_create(&sock, &local, NULL, 0);
if (res < 0) {
puts("uhcp_client(): cannot create listening socket");
return;
}
uint8_t buf[sizeof(uhcp_push_t) + 16];