Changeset 4184e76 in mainline for kernel/generic/src/main/kinit.c


Ignore:
Timestamp:
2007-02-05T15:03:01Z (18 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d8d542e
Parents:
b513b3e
Message:

explicit typecast, fix signed/unsigned comparison

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/main/kinit.c

    rb513b3e r4184e76  
    119119#ifdef CONFIG_SMP
    120120        if (config.cpu_count > 1) {
    121                 int i;
     121                unsigned int i;
    122122               
    123123                /*
     
    147147         * Create kernel console.
    148148         */
    149         t = thread_create(kconsole, "kconsole", TASK, 0, "kconsole", false);
     149        t = thread_create(kconsole, (void *) "kconsole", TASK, 0, "kconsole", false);
    150150        if (t)
    151151                thread_ready(t);
Note: See TracChangeset for help on using the changeset viewer.