Changeset 749 for soft/giet_vm/giet_libs/stdio.c
- Timestamp:
- Dec 16, 2015, 4:00:32 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/giet_libs/stdio.c
r743 r749 1076 1076 int giet_fat_fprintf( unsigned int fd_id, 1077 1077 char* format, 1078 ... ) ;1078 ... ) 1079 1079 { 1080 1080 va_list args; 1081 1081 char stream[4096]; 1082 unsigned int length;1082 unsigned int count; 1083 1083 1084 1084 va_start( args, format ); … … 1086 1086 va_end( args ); 1087 1087 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()"); 1089 1089 1090 1090 return sys_call( SYSCALL_FAT_WRITE,
Note: See TracChangeset
for help on using the changeset viewer.