linux-nfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] net: sunrpc:  replace 0 with NULL
@ 2019-11-25 22:52 Jules Irenge
  2019-11-26 16:38 ` Joe Perches
  0 siblings, 1 reply; 2+ messages in thread
From: Jules Irenge @ 2019-11-25 22:52 UTC (permalink / raw)
  To: trond.myklebust
  Cc: anna.schumaker, davem, linux-nfs, netdev, linux-kernel, Jules Irenge

Replace 0 with NULL to fix warning detected by sparse tool.
warning: Using plain integer as NULL pointer

Signed-off-by: Jules Irenge <jbi.octave@gmail.com>
---
 net/sunrpc/xprtsock.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/sunrpc/xprtsock.c b/net/sunrpc/xprtsock.c
index 70e52f567b2a..74d4ca06d572 100644
--- a/net/sunrpc/xprtsock.c
+++ b/net/sunrpc/xprtsock.c
@@ -614,7 +614,7 @@ xs_read_stream_reply(struct sock_xprt *transport, struct msghdr *msg, int flags)
 static ssize_t
 xs_read_stream(struct sock_xprt *transport, int flags)
 {
-	struct msghdr msg = { 0 };
+	struct msghdr msg = { NULL };
 	size_t want, read = 0;
 	ssize_t ret = 0;
 
-- 
2.23.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-11-26 16:38 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-25 22:52 [PATCH] net: sunrpc: replace 0 with NULL Jules Irenge
2019-11-26 16:38 ` Joe Perches

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).