Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/tester/stdio/stdio2.c

    r9af1c61 r582a0b8  
    3030#include <stdlib.h>
    3131#include <stddef.h>
    32 #include <str_error.h>
    3332#include <errno.h>
    3433#include "../tester.h"
     
    4342        file = fopen(file_name, "wt");
    4443        if (file == NULL) {
    45                 TPRINTF("errno = %s\n", str_error_name(errno));
     44                TPRINTF("errno = %d\n", errno);
    4645                return "Failed opening file";
    4746        } else
     
    5453        TPRINTF("Close...");
    5554        if (fclose(file) != 0) {
    56                 TPRINTF("errno = %s\n", str_error_name(errno));
     55                TPRINTF("errno = %d\n", errno);
    5756                return "Failed closing file";
    5857        } else
     
    6261        file = fopen(file_name, "rt");
    6362        if (file == NULL) {
    64                 TPRINTF("errno = %s\n", str_error_name(errno));
     63                TPRINTF("errno = %d\n", errno);
    6564                return "Failed opening file";
    6665        } else
     
    7776        TPRINTF("\nClose...");
    7877        if (fclose(file) != 0) {
    79                 TPRINTF("errno = %s\n", str_error_name(errno));
     78                TPRINTF("errno = %d\n", errno);
    8079                return "Failed closing file";
    8180        } else
Note: See TracChangeset for help on using the changeset viewer.