datapath: Use NULL for null pointer in compat code.
[openvswitch] / datapath / linux-2.6 / compat-2.6 / include / net / dst.h
index e51ac1d694e2f60da7eebcc7de5190298e9a7bdb..f481a9d3f181f6598f7dc1932d7b4b091627cddd 100644 (file)
@@ -9,7 +9,7 @@ static inline void skb_dst_drop(struct sk_buff *skb)
 {
        if (skb->dst)
                dst_release(skb_dst(skb));
-       skb->dst = 0UL;
+       skb->dst = NULL;
 }
 
 #endif