[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[lwip-users] typo in src/core/pbuf.c:770
From: |
Mike Tesch |
Subject: |
[lwip-users] typo in src/core/pbuf.c:770 |
Date: |
Tue, 25 Mar 2003 13:47:04 -0600 |
User-agent: |
Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.2) Gecko/20021202 |
%q should be %p
also, to get rid of a bunch of compiler warnings I added
parens around (debug) in the definition of DEBUGF():
#define DEBUGF(debug, x) \
do { \
if (((debug) & DBG_ON) && \
((debug) & DBG_TYPES_ON) && \
(((debug) & DBG_MASK_LEVEL) >= DBG_MIN_LEVEL)) { \
LWIP_PLATFORM_DIAG(x); \
if ((debug) & DBG_HALT) \
while(1); \
} \
} while(0)
regards,
mt
- [lwip-users] typo in src/core/pbuf.c:770,
Mike Tesch <=