From 2e233cb35b678650a743071270e3097619942be4 Mon Sep 17 00:00:00 2001 From: likewise Date: Fri, 4 Apr 2003 08:14:04 +0000 Subject: [PATCH] Fixed stylo. --- src/core/pbuf.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/core/pbuf.c b/src/core/pbuf.c index 44e73690..c038e789 100644 --- a/src/core/pbuf.c +++ b/src/core/pbuf.c @@ -613,8 +613,7 @@ pbuf_free(struct pbuf *p) LWIP_ASSERT("pbuf_free: p->ref > 0", p->ref > 0); p->ref--; /* this pbuf is no longer referenced to? */ - if (p->ref == 0) - { + if (p->ref == 0) { /* remember next pbuf in chain for next iteration */ q = p->next; /* is this a pbuf from the pool? */