* [PATCH] src: Remove unnecessary cast on void pointer
@ 2017-10-13 0:01 Harsha Sharma
0 siblings, 0 replies; only message in thread
From: Harsha Sharma @ 2017-10-13 0:01 UTC (permalink / raw)
To: pablo; +Cc: netfilter-devel, outreachy-kernel, Harsha Sharma
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@gmail.com>
---
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
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2017-10-13 0:04 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-13 0:01 [PATCH] src: Remove unnecessary cast on void pointer Harsha Sharma
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).