Skip to content

Commit

Permalink
Merge pull request #7552 from dmitrygx/topic/ucp/request
Browse files Browse the repository at this point in the history
UCP/CORE: Use request from argument in macro
  • Loading branch information
dmitrygx authored Oct 20, 2021
2 parents 80478d5 + 61f8ff6 commit 59998e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ucp/core/ucp_request.inl
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ UCS_PTR_MAP_IMPL(request, 0);

#define ucp_request_cb_param(_param, _req, _cb, ...) \
if ((_param)->op_attr_mask & UCP_OP_ATTR_FIELD_CALLBACK) { \
(_param)->cb._cb(req + 1, (_req)->status, ##__VA_ARGS__, \
(_param)->cb._cb((_req) + 1, (_req)->status, ##__VA_ARGS__, \
(_param)->user_data); \
}

Expand Down

0 comments on commit 59998e0

Please sign in to comment.