Changeset 3b47db6 in mainline for uspace/srv/test/chardev-test/main.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/srv/test/chardev-test/main.c

    rc81d4f1 r3b47db6  
    115115        if (rc != EOK) {
    116116                printf("%s: Failed registering server.: %s\n", NAME, str_error(rc));
    117                 return EXIT_RC(rc);
     117                return rc;
    118118        }
    119119
     
    133133        if (rc != EOK) {
    134134                printf("%s: Failed registering service.: %s\n", NAME, str_error(rc));
    135                 return EXIT_RC(rc);
     135                return rc;
    136136        }
    137137
     
    139139        if (rc != EOK) {
    140140                printf("%s: Failed registering service.: %s\n", NAME, str_error(rc));
    141                 return EXIT_RC(rc);
     141                return rc;
    142142        }
    143143
     
    145145        if (rc != EOK) {
    146146                printf("%s: Failed registering service.: %s\n", NAME, str_error(rc));
    147                 return EXIT_RC(rc);
     147                return rc;
    148148        }
    149149
Note: See TracChangeset for help on using the changeset viewer.