Ignore:
Timestamp:
Jun 29, 2014, 1:16:24 PM (10 years ago)
Author:
alain
Message:

Avoid GCC warnings for some missing initialisations.

File:
1 edited

Legend:

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

    r345 r352  
    2222////////////////////////////////////////////////////////////////////////////////////
    2323
    24 ////////////////////////////////////////
     24///////////////////////////////////////////////////////////////////////
    2525static int __printf( char* format, unsigned int channel, va_list* args)
    2626{
     
    329329                                channel,
    330330                                0 );
    331                 if ( ret < 0 ) giet_exit("error in giet_tty_gets()");
     331                if ( ret < 0 ) giet_exit("error in giet_tty_getw()");
    332332            }
    333333        }
     
    368368                            channel,
    369369                            0 );
    370             if ( ret < 0 ) giet_exit("error in giet_tty_gets()");
     370            if ( ret < 0 ) giet_exit("error in giet_tty_getw()");
    371371        }
    372372        // echo character '0'
     
    377377                        channel,
    378378                        0 );
    379         if ( ret < 0 ) giet_exit();
     379        if ( ret < 0 ) giet_exit("error in giet_tty_getw()");
    380380
    381381        // return 0 value
     
    670670}
    671671
    672 
    673672// Local Variables:
    674673// tab-width: 4
Note: See TracChangeset for help on using the changeset viewer.