Changeset 749 for soft


Ignore:
Timestamp:
Dec 16, 2015, 4:00:32 PM (8 years ago)
Author:
alain
Message:

cosmetic

File:
1 edited

Legend:

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

    r743 r749  
    10761076int giet_fat_fprintf( unsigned int fd_id,
    10771077                      char*        format,
    1078                       ... );
     1078                      ... )
    10791079{
    10801080    va_list      args;
    10811081    char         stream[4096];
    1082     unsigned int length;
     1082    unsigned int count;
    10831083
    10841084    va_start( args, format );
     
    10861086    va_end( args );
    10871087
    1088     if ( length == 0xFFFFFFFF ) giet_pthread_exit("illegal format in giet_fat_fprintf()");
     1088    if ( count == 0xFFFFFFFF ) giet_pthread_exit("illegal format in giet_fat_fprintf()");
    10891089
    10901090    return sys_call( SYSCALL_FAT_WRITE,
Note: See TracChangeset for help on using the changeset viewer.