diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 04ce3c5431..9e409aa944 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,11 @@ 2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2008-10-31 02:14 UTC+0200 Viktor Szakats (harbour.01 syenar hu) + * source/vm/dlmalloc.c + ! Fixed minor MinGW warning. This fix also exists + as part of the next dlmalloc version (2.8.4b). + 2008-10-31 02:05 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * make_b32.mak * contrib/mtpl_b32.mak diff --git a/harbour/source/vm/dlmalloc.c b/harbour/source/vm/dlmalloc.c index 43025b028c..953b9d10cb 100644 --- a/harbour/source/vm/dlmalloc.c +++ b/harbour/source/vm/dlmalloc.c @@ -3393,7 +3393,7 @@ static void* sys_alloc(mstate m, size_t nb) { if (end != CMFAIL) asize += esize; else { /* Can't use; try to release */ - CALL_MORECORE(-asize); + (void) CALL_MORECORE(-asize); br = CMFAIL; } }