Changeset e7ceef91 in rtems


Ignore:
Timestamp:
03/23/04 12:16:30 (20 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
1db1bc5
Parents:
ee4f57d
Message:

2004-03-23 Ralf Corsepius <ralf_corsepius@…>

  • libcsupport/src/malloc.c: Remove lvalue casts.
Location:
cpukit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • cpukit/ChangeLog

    ree4f57d re7ceef91  
     12004-03-23      Ralf Corsepius <ralf_corsepius@rtems.org>
     2
     3        * libcsupport/src/malloc.c: Remove lvalue casts.
     4
    152004-03-23      Ralf Corsepius <ralf_corsepius@rtems.org>
    26
  • cpukit/libcsupport/src/malloc.c

    ree4f57d re7ceef91  
    213213    the_size = ((size + sbrk_amount) / sbrk_amount * sbrk_amount);
    214214
    215     if (((uint32_t  )starting_address = (void *)sbrk(the_size))
    216             == (uint32_t  ) -1)
     215    if ((starting_address = (void *)sbrk(the_size))
     216            == (void*) -1)
    217217      return (void *) 0;
    218218
     
    290290)
    291291{
    292   uint32_t    old_size;
     292  size_t old_size;
    293293  rtems_status_code status;
    294294  char *new_area;
Note: See TracChangeset for help on using the changeset viewer.