From 40d4a8fc2ff3153085c5b6fad9ff95dffbd5fdad Mon Sep 17 00:00:00 2001 From: jifl Date: Tue, 29 Apr 2008 16:51:35 +0000 Subject: [PATCH] Trivial change: correct sense of comment about LWIP_ERROR macro --- src/include/lwip/debug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lwip/debug.h b/src/include/lwip/debug.h index 8070027d..089a80aa 100644 --- a/src/include/lwip/debug.h +++ b/src/include/lwip/debug.h @@ -66,7 +66,7 @@ #define LWIP_ASSERT(x,y) #endif /* LWIP_NOASSERT */ -/** print "m" message only if "e" is true, and execute "h" expression */ +/** if "e" isn't true, then print "m" message and execute "h" expression */ #ifndef LWIP_ERROR #define LWIP_ERROR(m,e,h) do { if (!(e)) { LWIP_PLATFORM_ASSERT(m); h;}} while(0) #endif /* LWIP_ERROR */