Changes in uspace/app/trace/ipcp.c [7354b5e:503ffce] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/trace/ipcp.c
r7354b5e r503ffce 323 323 pending_call_t *pcall; 324 324 325 if ((hash & IPC_CALLID_ANSWERED) == 0 && hash != IPCP_CALLID_SYNC) { 325 if ((call->flags & IPC_CALLID_ANSWERED) == 0 && 326 hash != IPCP_CALLID_SYNC) { 326 327 /* Not a response */ 327 328 if ((display_mask & DM_IPC) != 0) { … … 331 332 } 332 333 333 hash = hash & ~IPC_CALLID_ANSWERED;334 335 334 item = hash_table_find(&pending_calls, &hash); 336 335 if (item == NULL)
Note:
See TracChangeset
for help on using the changeset viewer.