Changeset a6d8726 in mainline


Ignore:
Timestamp:
2011-05-19T17:07:30Z (13 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2a922c8
Parents:
26aafe8
Message:

improve formatting directive again

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/debug/panic.c

    r26aafe8 ra6d8726  
    9797        printf("THE=%p: ", THE);
    9898        if (THE != NULL) {
    99                 printf("pe=%" PRIun " thr=%p task=%p cpu=%p as=%p magic=%#x\n",
    100                     THE->preemption_disabled, THE->thread, THE->task,
    101                     THE->cpu, THE->as, THE->magic);
     99                printf("pe=%" PRIun " thr=%p task=%p cpu=%p as=%p"
     100                    " magic=%#" PRIx32 "\n", THE->preemption_disabled,
     101                    THE->thread, THE->task, THE->cpu, THE->as, THE->magic);
    102102        } else
    103103                printf("invalid\n");
Note: See TracChangeset for help on using the changeset viewer.