Changeset c81132d in mainline for uspace/lib/hound/src/protocol.c


Ignore:
Timestamp:
2017-12-09T21:25:14Z (6 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1afa94d
Parents:
94e3a03
Message:

Replace casts from non-bool to bool with explicit equality check.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/hound/src/protocol.c

    r94e3a03 rc81132d  
    189189        ipc_call_t res_call;
    190190        aid_t mid = async_send_3(exch, IPC_M_HOUND_GET_LIST, flags, *count,
    191             (bool)connection, &res_call);
     191            connection != NULL, &res_call);
    192192
    193193        sysarg_t ret = EOK;
Note: See TracChangeset for help on using the changeset viewer.