Changeset 7fa8589 in mainline for uspace/lib/c/generic/vfs/vfs.c


Ignore:
Timestamp:
2020-01-09T01:04:58Z (5 years ago)
Author:
Matthieu Riolo <matthieu.riolo@…>
Children:
bcd7775
Parents:
76c8209
git-author:
Matthieu Riolo <matthieu.riolo@…> (2020-01-05 20:21:10)
git-committer:
Matthieu Riolo <matthieu.riolo@…> (2020-01-09 01:04:58)
Message:

Removing unneeded casts from errno_t to errno_t

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/vfs/vfs.c

    r76c8209 r7fa8589  
    742742                loc_null_destroy(null_id);
    743743
    744         return (errno_t) rc;
     744        return rc;
    745745}
    746746
     
    11881188
    11891189        if (rc_orig != EOK)
    1190                 return (errno_t) rc_orig;
     1190                return rc_orig;
    11911191        return rc;
    11921192}
     
    12781278
    12791279        if (rc_orig != EOK)
    1280                 return (errno_t) rc_orig;
     1280                return rc_orig;
    12811281
    12821282        if (rc != EOK)
    1283                 return (errno_t) rc;
     1283                return rc;
    12841284
    12851285        *handle = (int) ipc_get_arg1(&answer);
Note: See TracChangeset for help on using the changeset viewer.