Changeset 766 for soft


Ignore:
Timestamp:
Jan 19, 2016, 4:23:18 PM (8 years ago)
Author:
alain
Message:

Bug fix.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/giet_libs/stdio.c

    r765 r766  
    11341134                     unsigned int  length )
    11351135{
    1136     if ( length & 0xFFF )        giet_pthread_exit("error in giet_fat_mmap()");
    1137     if ( vaddr  & 0xFFF )        giet_pthread_exit("error in giet_fat_mmap()");
     1136    if ( length & 0xFFF )              giet_pthread_exit("error in giet_fat_mmap()");
     1137    if ( (unsigned int)vaddr & 0xFFF ) giet_pthread_exit("error in giet_fat_mmap()");
    11381138
    11391139    return sys_call( SYSCALL_FAT_MMAP,
Note: See TracChangeset for help on using the changeset viewer.