Changeset e32e092 in mainline for kernel/generic/src/ipc


Ignore:
Timestamp:
2008-06-06T07:34:21Z (17 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
eb1c0a3
Parents:
40257f5
Message:

Declare arguments for memstr.h operations as pointers instead of uintptr_t.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/ipc/ipc.c

    r40257f5 re32e092  
    6767static void _ipc_call_init(call_t *call)
    6868{
    69         memsetb((uintptr_t) call, sizeof(*call), 0);
     69        memsetb(call, sizeof(*call), 0);
    7070        call->callerbox = &TASK->answerbox;
    7171        call->sender = TASK;
Note: See TracChangeset for help on using the changeset viewer.