ipv4: coding style: comparison for equality with NULL
[deliverable/linux.git] / net / ipv4 / raw.c
index 56946f47d44673c9f93ab4d5d04b0811b8491c8a..46a78204189d2566c551e5b4faa4de8baaddf4ea 100644 (file)
@@ -363,7 +363,7 @@ static int raw_send_hdrinc(struct sock *sk, struct flowi4 *fl4,
        skb = sock_alloc_send_skb(sk,
                                  length + hlen + tlen + 15,
                                  flags & MSG_DONTWAIT, &err);
-       if (skb == NULL)
+       if (!skb)
                goto error;
        skb_reserve(skb, hlen);
 
This page took 0.113982 seconds and 5 git commands to generate.