Changeset 78d0da8 in mainline


Ignore:
Timestamp:
2008-06-03T15:18:32Z (16 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7f880ee8
Parents:
860271d4
Message:

revert coding style change

File:
1 edited

Legend:

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

    r860271d4 r78d0da8  
    574574        printf("ABOX - CALLS:\n");
    575575        for (tmp = task->answerbox.calls.next; tmp != &task->answerbox.calls;
    576                 tmp = tmp->next) {
     576            tmp = tmp->next) {
    577577                call = list_get_instance(tmp, call_t, link);
    578578                printf("Callid: %p Srctask:%" PRIu64 " M:%" PRIun
     
    587587        printf("ABOX - DISPATCHED CALLS:\n");
    588588        for (tmp = task->answerbox.dispatched_calls.next;
    589                 tmp != &task->answerbox.dispatched_calls;
    590                 tmp = tmp->next) {
     589            tmp != &task->answerbox.dispatched_calls;
     590            tmp = tmp->next) {
    591591                call = list_get_instance(tmp, call_t, link);
    592592                printf("Callid: %p Srctask:%" PRIu64 " M:%" PRIun
     
    601601        printf("ABOX - ANSWERS:\n");
    602602        for (tmp = task->answerbox.answers.next; tmp != &task->answerbox.answers;
    603                 tmp = tmp->next) {
     603            tmp = tmp->next) {
    604604                call = list_get_instance(tmp, call_t, link);
    605605                printf("Callid:%p M:%" PRIun " A1:%" PRIun " A2:%" PRIun
Note: See TracChangeset for help on using the changeset viewer.