Changeset 3b47db6 in mainline for uspace/app/getterm/getterm.c


Ignore:
Timestamp:
2018-01-04T20:50:53Z (6 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Children:
58e4d85
Parents:
c81d4f1
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:

(optional) Remove EXIT_RC().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/getterm/getterm.c

    rc81d4f1 r3b47db6  
    138138                        printf("%s: Error waiting on %s (%s)\n", APP_NAME, term,
    139139                            str_error(rc));
    140                         return EXIT_RC(rc);
     140                        return rc;
    141141                }
    142142        }
     
    175175                printf("%s: Error spawning %s (%s)\n", APP_NAME, cmd,
    176176                    str_error(rc));
    177                 return EXIT_RC(rc);
     177                return rc;
    178178        }
    179179       
     
    184184                printf("%s: Error waiting for %s (%s)\n", APP_NAME, cmd,
    185185                    str_error(rc));
    186                 return EXIT_RC(rc);
     186                return rc;
    187187        }
    188188       
Note: See TracChangeset for help on using the changeset viewer.