diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/op.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,7 +7,7 @@ /* ergonomic helper for submitting a thunk_t as a cb+cb_data pair to iou_op_queue() */ static inline void op_queue(iou_t *iou, iou_op_t *op, thunk_t *thunk) { - return iou_op_queue(iou, op, (int (*)(void *))thunk->dispatch, thunk); + return iou_op_queue(iou, op, (int (*)(void *))thunk_dispatch, thunk); } #endif |