From 86c774443c89fd89fd304dd5ea1257f6ca173830 Mon Sep 17 00:00:00 2001 From: likewise Date: Tue, 4 Jan 2005 12:20:25 +0000 Subject: [PATCH] Fixed missing semicolon in LWIP_DEBUG statement. --- src/core/pbuf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/pbuf.c b/src/core/pbuf.c index 5cd75dda..7e55d761 100644 --- a/src/core/pbuf.c +++ b/src/core/pbuf.c @@ -732,7 +732,7 @@ pbuf_queue(struct pbuf *p, struct pbuf *n) LWIP_ASSERT("n == NULL in pbuf_queue: this indicates a programmer error\n", n != NULL); LWIP_ASSERT("p == n in pbuf_queue: this indicates a programmer error\n", p != n); if ((p == NULL) || (n == NULL) || (p == n)){ - LWIP_DEBUGF(PBUF_DEBUG | DBG_HALT | 3, ("pbuf_queue: programmer argument error\n")) + LWIP_DEBUGF(PBUF_DEBUG | DBG_HALT | 3, ("pbuf_queue: programmer argument error\n")); return; }