Ignore:
Timestamp:
Aug 29, 2017, 12:03:37 PM (7 years ago)
Author:
alain
Message:

This version executed successfully the user "init" process on a mono-processor TSAR architecture.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kernel/kern/printk.c

    r372 r406  
    327327            case ('l'):            /* 64 bits hexadecimal unsigned */
    328328            {
    329                 uint64_t val = va_arg( *args , uint64_t );
     329                unsigned long long val = va_arg( *args , unsigned long long );
    330330                txt_write( channel, busy, "0x" , 2 );
    331331                for(i = 0; i < 16; i++)
     
    340340            case ('L'):           /* 64 bits hexadecimal unsigned on 18 char */
    341341            {
    342                 uint64_t val = va_arg( *args , uint64_t );
     342                unsigned long long val = va_arg( *args , unsigned long long );
    343343                txt_write( channel, busy, "0x" , 2 );
    344344                for(i = 0; i < 16; i++)
Note: See TracChangeset for help on using the changeset viewer.