Changeset 778 for soft


Ignore:
Timestamp:
Feb 4, 2016, 11:04:48 PM (8 years ago)
Author:
alain
Message:

O_CREAT

File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/applications/transpose/transpose.c

    r775 r778  
    286286
    287287    // open instrumentation file
    288     unsigned int fd = giet_fat_open( string , O_CREATE );
     288    unsigned int fd = giet_fat_open( string , O_CREAT );
    289289    if ( fd < 0 )
    290290    {
     
    470470    }
    471471
    472     fd_out = giet_fat_open( output_file_name , O_CREATE );   // create if required
     472    fd_out = giet_fat_open( output_file_name , O_CREAT );   // create if required
    473473    if ( fd_out < 0 )
    474474    {
Note: See TracChangeset for help on using the changeset viewer.