Changeset 352 for soft/giet_vm/giet_libs/stdio.c
- Timestamp:
- Jun 29, 2014, 1:16:24 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/giet_libs/stdio.c
r345 r352 22 22 //////////////////////////////////////////////////////////////////////////////////// 23 23 24 //////////////////////////////////////// 24 /////////////////////////////////////////////////////////////////////// 25 25 static int __printf( char* format, unsigned int channel, va_list* args) 26 26 { … … 329 329 channel, 330 330 0 ); 331 if ( ret < 0 ) giet_exit("error in giet_tty_get s()");331 if ( ret < 0 ) giet_exit("error in giet_tty_getw()"); 332 332 } 333 333 } … … 368 368 channel, 369 369 0 ); 370 if ( ret < 0 ) giet_exit("error in giet_tty_get s()");370 if ( ret < 0 ) giet_exit("error in giet_tty_getw()"); 371 371 } 372 372 // echo character '0' … … 377 377 channel, 378 378 0 ); 379 if ( ret < 0 ) giet_exit( );379 if ( ret < 0 ) giet_exit("error in giet_tty_getw()"); 380 380 381 381 // return 0 value … … 670 670 } 671 671 672 673 672 // Local Variables: 674 673 // tab-width: 4
Note: See TracChangeset
for help on using the changeset viewer.