Done with following coccinelle patch @r@ expression x; void* e; type T; identifier f; @@ ( *((T *)e) | ((T *)x)[...] | ((T*)x)->f | - (T*) e ) Signed-off-by: Harsha Sharma <harshasharmaiitr@xxxxxxxxx> --- src/netlink.c | 2 +- src/tcpopt.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/netlink.c b/src/netlink.c index d5d410a..3a7ae62 100644 --- a/src/netlink.c +++ b/src/netlink.c @@ -2941,7 +2941,7 @@ static int netlink_events_cb(const struct nlmsghdr *nlh, void *data) { int ret = MNL_CB_OK; uint16_t type = NFNL_MSG_TYPE(nlh->nlmsg_type); - struct netlink_mon_handler *monh = (struct netlink_mon_handler *)data; + struct netlink_mon_handler *monh = data; netlink_events_debug(type, monh->debug_mask); netlink_events_cache_update(monh, nlh, type); diff --git a/src/tcpopt.c b/src/tcpopt.c index 7c6c255..c37c9d5 100644 --- a/src/tcpopt.c +++ b/src/tcpopt.c @@ -86,7 +86,7 @@ static const struct exthdr_desc tcpopt_timestamp = { }; #undef PHT -#define TCPOPT_OBSOLETE ((struct exthdr_desc *)NULL) +#define TCPOPT_OBSOLETE (NULL) #define TCPOPT_ECHO 6 #define TCPOPT_ECHO_REPLY 7 static const struct exthdr_desc *tcpopt_protocols[] = { -- 2.11.0 -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html