9
0
Fork 0

fix warnings in malloc code introduced by last commits

This commit is contained in:
Sascha Hauer 2008-06-03 13:30:38 +02:00
parent cd75dd3647
commit aa2111e257
2 changed files with 3 additions and 3 deletions

View File

@ -1933,7 +1933,7 @@ static void malloc_update_mallinfo(void)
int i;
mbinptr b;
mchunkptr p;
#if DEBUG
#ifdef DEBUG
mchunkptr q;
#endif
@ -1945,7 +1945,7 @@ static void malloc_update_mallinfo(void)
b = bin_at(i);
for (p = last(b); p != b; p = p->bk)
{
#if DEBUG
#ifdef DEBUG
check_free_chunk(p);
for (q = next_chunk(p);
q < top && inuse(q) && (long)(chunksize(q)) >= (long)MINSIZE;

View File

@ -472,7 +472,7 @@ do { \
#define HAVE_MMAP 1
#endif
***/
#undef HAVE_MMAP /* Not available for U-Boot */
#define HAVE_MMAP 0 /* Not available for U-Boot */
/*
Define HAVE_MREMAP to make realloc() use mremap() to re-allocate