Changeset ba18512 in mainline for arch/ia32/src/smp


Ignore:
Timestamp:
2005-08-30T21:33:09Z (20 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b524f816
Parents:
fa0dfaf
Message:

Switch order of 'src' and 'dst' arguments in some left-over uses of memcopy.

Cleanup.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/ia32/src/smp/mps.c

    rfa0dfaf rba18512  
    313313#ifdef MPSCT_VERBOSE
    314314        char buf[7];
    315         memcopy((__address) bus->bus_type, (__address) buf, 6);
     315        memcopy((void *) buf, (void *) bus->bus_type, 6);
    316316        buf[6] = 0;
    317317        printf("bus%d: %s\n", bus->bus_id, buf);
Note: See TracChangeset for help on using the changeset viewer.