Ignore:
File:
1 edited

Legend:

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

    r1d6dd2a r582a0b8  
    3232#include <stddef.h>
    3333#include <errno.h>
    34 #include <str.h>
    3534#include "config.h"
    3635#include "util.h"
     
    8685        }
    8786
    88         errno_t rc = EOK;
     87        int rc = 0;
    8988        FILE *batch = fopen(argv[1], "r");
    9089        if (batch == NULL) {
     
    105104                                if (cur == fusr.line) {
    106105                                        /* skip empty line */
    107                                         rc = EOK;
     106                                        rc = 0;
    108107                                        free(cur);
    109108                                } else {
Note: See TracChangeset for help on using the changeset viewer.