]> git.hungrycats.org Git - linux/commitdiff
[PATCH] compiler warning silence
authorDave Jones <davej@codemonkey.org.uk>
Wed, 8 Jan 2003 10:55:52 +0000 (02:55 -0800)
committerLinus Torvalds <torvalds@home.transmeta.com>
Wed, 8 Jan 2003 10:55:52 +0000 (02:55 -0800)
drivers/atm/atmtcp.c

index 22fc40bf0e27fd633bd8847415922dda89b8b65c..e0b7ab1697ab86fe438a74e7d7a1ed8b3c3260b5 100644 (file)
@@ -173,7 +173,7 @@ static int atmtcp_v_ioctl(struct atm_dev *dev,unsigned int cmd,void *arg)
 static int atmtcp_v_send(struct atm_vcc *vcc,struct sk_buff *skb)
 {
        struct atmtcp_dev_data *dev_data;
-       struct atm_vcc *out_vcc;
+       struct atm_vcc *out_vcc=NULL; /* Initializer quietens GCC warning */
        struct sk_buff *new_skb;
        struct atmtcp_hdr *hdr;
        int size;