Changeset cd8ad52 in mainline for kernel/test/fpu/mips2.c


Ignore:
Timestamp:
2008-06-03T14:58:05Z (16 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b63f8569
Parents:
7ac426e
Message:

proper printf formatting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/test/fpu/mips2.c

    r7ac426e rcd8ad52  
    7373                if (arg != after_arg) {
    7474                        if (!sh_quiet)
    75                                 printf("General reg tid%llu: arg(%d) != %d\n", THREAD->tid, arg, after_arg);
     75                                printf("General reg tid%" PRIu64 ": arg(%d) != %d\n", THREAD->tid, arg, after_arg);
    7676                        atomic_inc(&threads_fault);
    7777                        break;
     
    105105                if (arg != after_arg) {
    106106                        if (!sh_quiet)
    107                                 printf("General reg tid%llu: arg(%d) != %d\n", THREAD->tid, arg, after_arg);
     107                                printf("General reg tid%" PRIu64 ": arg(%d) != %d\n", THREAD->tid, arg, after_arg);
    108108                        atomic_inc(&threads_fault);
    109109                        break;
     
    124124       
    125125        if (!quiet)
    126                 printf("Creating %d threads... ", 2 * THREADS);
     126                printf("Creating %u threads... ", 2 * THREADS);
    127127
    128128        for (i = 0; i < THREADS; i++) {
     
    131131                if (!(t = thread_create(testit1, (void *) ((unative_t) 2 * i), TASK, 0, "testit1", false))) {
    132132                        if (!quiet)
    133                                 printf("could not create thread %d\n", 2 * i);
     133                                printf("could not create thread %u\n", 2 * i);
    134134                        break;
    135135                }
     
    139139                if (!(t = thread_create(testit2, (void *) ((unative_t) 2 * i + 1), TASK, 0, "testit2", false))) {
    140140                        if (!quiet)
    141                                 printf("could not create thread %d\n", 2 * i + 1);
     141                                printf("could not create thread %u\n", 2 * i + 1);
    142142                        break;
    143143                }
Note: See TracChangeset for help on using the changeset viewer.