mirror of
https://git.savannah.nongnu.org/git/lwip.git
synced 2026-06-01 07:23:49 +08:00
Fix some more variables named "index" - found by Joel Cunningham
This commit is contained in:
@@ -113,9 +113,9 @@ stats_display_mem(struct stats_mem *mem, const char *name)
|
||||
|
||||
#if MEMP_STATS
|
||||
void
|
||||
stats_display_memp(struct stats_mem *mem, int index)
|
||||
stats_display_memp(struct stats_mem *mem, int idx)
|
||||
{
|
||||
if (index < MEMP_MAX) {
|
||||
if (idx < MEMP_MAX) {
|
||||
stats_display_mem(mem, mem->name);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user