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

gnrc/sock: fix fallthrough warning (#7403)

* gnrc/sock: fix fallthrough warning

* gnrc/sock: added spaces around "Fall Through."
This commit is contained in:
Tobias Heider 2017-07-25 21:12:30 +02:00 committed by Martine Lenders
parent 5d04defe09
commit 3b5860451c

View File

@ -87,6 +87,7 @@ ssize_t gnrc_sock_recv(gnrc_sock_reg_t *reg, gnrc_pktsnip_t **pkt_out,
return -ETIMEDOUT;
}
#endif
/* Falls Through. */
default:
return -EINTR;
}