Changeset 58e4d85 in mainline for uspace/app/bdsh/exec.c


Ignore:
Timestamp:
2018-01-04T20:50:53Z (8 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Children:
08d4ea2
Parents:
3b47db6
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:47:53)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:50:53)
Message:

Change (rc != 0) to (rc != EOK).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bdsh/exec.c

    r3b47db6 r58e4d85  
    118118        free(tmp);
    119119
    120         if (rc != 0) {
     120        if (rc != EOK) {
    121121                cli_error(CL_EEXEC, "%s: Cannot spawn `%s' (%s)", progname, cmd,
    122122                    str_error(rc));
Note: See TracChangeset for help on using the changeset viewer.