Changeset 7ab7075f in mainline for uspace/app/tester/stdio
- Timestamp:
 - 2018-08-06T18:40:12Z (7 years ago)
 - Branches:
 - lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
 - Children:
 - 1dcba91
 - Parents:
 - 7afd12e5
 - File:
 - 
      
- 1 edited
 
- 
          
  uspace/app/tester/stdio/stdio2.c (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
uspace/app/tester/stdio/stdio2.c
r7afd12e5 r7ab7075f 37 37 { 38 38 FILE *file; 39 const char *file_name = "/t est";39 const char *file_name = "/tmp/test"; 40 40 41 41 TPRINTF("Open file \"%s\" for writing...", file_name); 42 42 errno = 0; 43 file = fopen(file_name, "wt ");43 file = fopen(file_name, "wtx"); 44 44 if (file == NULL) { 45 45 TPRINTF("errno = %s\n", str_error_name(errno));  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  