Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bdsh/cmds/builtins/batch/batch.c

    r582a0b8 r1d6dd2a  
    3232#include <stddef.h>
    3333#include <errno.h>
     34#include <str.h>
    3435#include "config.h"
    3536#include "util.h"
     
    8586        }
    8687
    87         int rc = 0;
     88        errno_t rc = EOK;
    8889        FILE *batch = fopen(argv[1], "r");
    8990        if (batch == NULL) {
     
    104105                                if (cur == fusr.line) {
    105106                                        /* skip empty line */
    106                                         rc = 0;
     107                                        rc = EOK;
    107108                                        free(cur);
    108109                                } else {
Note: See TracChangeset for help on using the changeset viewer.