Fix my last commit - break is missing

This commit is contained in:
Dirk Ziegelmeier 2017-07-10 09:52:48 +02:00
parent 57b1471254
commit 449eb64fcb

View File

@ -228,6 +228,7 @@ pbuf_alloc(pbuf_layer layer, u16_t length, pbuf_type type)
case PBUF_REF: /* fall through */
case PBUF_ROM:
p = pbuf_alloc_reference(NULL, length, type);
break;
case PBUF_POOL:
{
struct pbuf *q, *last;