lwip-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lwip-commits] lwip/src/include/lwip mem.h


From: Christiaan Simons
Subject: [lwip-commits] lwip/src/include/lwip mem.h
Date: Thu, 15 Jun 2006 07:10:04 +0000

CVSROOT:        /sources/lwip
Module name:    lwip
Changes by:     Christiaan Simons <christiaans> 06/06/15 07:10:04

Modified files:
        src/include/lwip: mem.h 

Log message:
        Fixed cold case bug #1748, printing of mem_size_t and u16_t statistics.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/lwip/src/include/lwip/mem.h?cvsroot=lwip&r1=1.8&r2=1.9

Patches:
Index: mem.h
===================================================================
RCS file: /sources/lwip/lwip/src/include/lwip/mem.h,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- mem.h       31 May 2006 21:23:01 -0000      1.8
+++ mem.h       15 Jun 2006 07:10:04 -0000      1.9
@@ -37,8 +37,10 @@
 
 #if MEM_SIZE > 64000l
 typedef u32_t mem_size_t;
+#define MEM_SIZE_F U32_F
 #else
 typedef u16_t mem_size_t;
+#define MEM_SIZE_F U16_F
 #endif /* MEM_SIZE > 64000 */
 
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]