Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/trace/ipcp.c

    r503ffce r7354b5e  
    323323        pending_call_t *pcall;
    324324       
    325         if ((call->flags & IPC_CALLID_ANSWERED) == 0 &&
    326             hash != IPCP_CALLID_SYNC) {
     325        if ((hash & IPC_CALLID_ANSWERED) == 0 && hash != IPCP_CALLID_SYNC) {
    327326                /* Not a response */
    328327                if ((display_mask & DM_IPC) != 0) {
     
    332331        }
    333332       
     333        hash = hash & ~IPC_CALLID_ANSWERED;
     334       
    334335        item = hash_table_find(&pending_calls, &hash);
    335336        if (item == NULL)
Note: See TracChangeset for help on using the changeset viewer.