Changeset 772 for soft/giet_vm/applications/transpose
- Timestamp:
- Feb 3, 2016, 9:59:18 AM (9 years ago)
- Location:
- soft/giet_vm/applications/transpose
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/applications/transpose/transpose.c
r769 r772 276 276 277 277 // open instrumentation file 278 unsigned int fd = giet_fat_open( "/home/transpose.inst" , O_CREAT E);278 unsigned int fd = giet_fat_open( "/home/transpose.inst" , O_CREAT); 279 279 if ( fd < 0 ) 280 280 { … … 453 453 } 454 454 455 fd_out = giet_fat_open( output_file_name , O_CREAT E); // create if required455 fd_out = giet_fat_open( output_file_name , O_CREAT); // create if required 456 456 if ( fd_out < 0 ) 457 457 { -
soft/giet_vm/applications/transpose/transpose_rw.c
r764 r772 146 146 147 147 // open output file 148 fd_out = giet_fat_open( output_file_name , O_CREAT E); // create if required148 fd_out = giet_fat_open( output_file_name , O_CREAT ); // create if required 149 149 if ( fd_out < 0 ) 150 150 {
Note: See TracChangeset
for help on using the changeset viewer.