Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/ipc/sysipc_ops.h

    r466e95f7 rd0c2beb  
    4040#define SYSIPC_OP(op, call, ...) \
    4141        ({ \
    42                 int rc = EOK; \
    43                 \
    44                 sysipc_ops_t *ops; \
    45                 ops = sysipc_ops_get((call)->request_method); \
    46                 if (ops->op) \
    47                         rc = ops->op((call), ##__VA_ARGS__); \
    48                 rc; \
     42                sysipc_ops_t *ops = sysipc_ops_get((call)->request_method); \
     43                assert(ops->op); \
     44                ops->op((call), ##__VA_ARGS__); \
    4945        })
    5046
Note: See TracChangeset for help on using the changeset viewer.