]> pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[IPV6]: Fixes sparse warning in ipv6/ipv6_sockglue.c
authorLuiz Capitulino <lcapitulino@mandriva.com.br>
Tue, 15 Nov 2005 05:43:36 +0000 (21:43 -0800)
committerDavid S. Miller <davem@davemloft.net>
Tue, 15 Nov 2005 05:43:36 +0000 (21:43 -0800)
The patch below fixes the following sparse warning:

net/ipv6/ipv6_sockglue.c:291:13: warning: Using plain integer as NULL pointer

Signed-off-by: Luiz Capitulino <lcapitulino@mandriva.com.br>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv6/ipv6_sockglue.c

index 003fd99ff597d6f4332008c90f6bdcb2b9e80493..25757ade989f50d23bf2e7d948d1286918678070 100644 (file)
@@ -287,7 +287,7 @@ int ipv6_setsockopt(struct sock *sk, int level, int optname,
        {
                struct ipv6_txoptions *opt;
                if (optlen == 0)
-                       optval = 0;
+                       optval = NULL;
 
                /* hop-by-hop / destination options are privileged option */
                retv = -EPERM;