stats: place 'err' in stats_mem more at the front to better see it in debugger overview window

This commit is contained in:
goldsimon 2014-12-10 09:48:00 +01:00
parent 1bf2e313f6
commit dbe33783c9

View File

@ -91,10 +91,10 @@ struct stats_mem {
#ifdef LWIP_DEBUG
const char *name;
#endif /* LWIP_DEBUG */
STAT_COUNTER err;
mem_size_t avail;
mem_size_t used;
mem_size_t max;
STAT_COUNTER err;
STAT_COUNTER illegal;
};