Changeset 15039b67 in mainline for klog/klog.c


Ignore:
Timestamp:
2006-06-11T17:05:41Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f8d5b85
Parents:
290c0db
Message:

Modified uspace to match changes in kernel ipc/irq.
Fixed types in ega fb.
Added dummy interfacing with PS/2 mouse.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • klog/klog.c

    r290c0db r15039b67  
    5050       
    5151        async_serialize_start();
    52         for (i=0; klog[i + IPC_GET_ARG2(*call)] && i < IPC_GET_ARG3(*call); i++)
    53                 putchar(klog[i + IPC_GET_ARG2(*call)]);
     52        for (i=0; klog[i + IPC_GET_ARG1(*call)] && i < IPC_GET_ARG2(*call); i++)
     53                putchar(klog[i + IPC_GET_ARG1(*call)]);
    5454        putchar('\n');
    5555        async_serialize_end();
Note: See TracChangeset for help on using the changeset viewer.