Changeset 25697163 in mainline for uspace/srv/sysman/edge.c


Ignore:
Timestamp:
2019-10-06T19:47:15Z (5 years ago)
Author:
Matthieu Riolo <matthieu.riolo@…>
Children:
9559cf8
Parents:
102f641
git-author:
Matthieu Riolo <matthieu.riolo@…> (2019-09-06 17:58:36)
git-committer:
Matthieu Riolo <matthieu.riolo@…> (2019-10-06 19:47:15)
Message:

Replacing int with errno_t

The merged code from system-daemon still used the type int
for indicating an error instead of using errno_t. This
commit corrects this mistake

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/sysman/edge.c

    r102f641 r25697163  
    7777}
    7878
    79 int edge_sprout_out(unit_t *input, const char *output_name)
     79errno_t edge_sprout_out(unit_t *input, const char *output_name)
    8080{
    81         int rc;
     81        errno_t rc;
    8282        unit_edge_t *e = edge_create();
    8383
     
    123123 * @return        EEXIST
    124124 */
    125 int edge_connect(unit_t *input, unit_t *output)
     125errno_t edge_connect(unit_t *input, unit_t *output)
    126126{
    127127        if (edge_extract_internal(input, output)) {
Note: See TracChangeset for help on using the changeset viewer.