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).
This commit is contained in:
Viktor Szakats
2008-10-31 01:14:51 +00:00
parent cc2e8c09b9
commit 3876864996
2 changed files with 6 additions and 1 deletions

View File

@@ -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

View File

@@ -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;
}
}