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


Ignore:
Timestamp:
2020-01-09T01:04:58Z (4 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/io/logctl.c

    r76c8209 r7fa8589  
    8585                return rc;
    8686
    87         rc = (errno_t) async_req_1_0(exchange,
     87        rc = async_req_1_0(exchange,
    8888            LOGGER_CONTROL_SET_DEFAULT_LEVEL, new_level);
    8989
     
    119119                return rc;
    120120
    121         return (errno_t) reg_msg_rc;
     121        return reg_msg_rc;
    122122}
    123123
     
    145145                return rc;
    146146
    147         return (errno_t) reg_msg_rc;
     147        return reg_msg_rc;
    148148}
    149149
Note: See TracChangeset for help on using the changeset viewer.