From e91444faadb368495b75d871ec6614d075e06979 Mon Sep 17 00:00:00 2001 From: Marcus Brinkmann Date: Sat, 22 Jan 2005 05:35:10 +0000 Subject: 2005-01-22 Guillem Jover * linux/dev/include/linux/skbuff.h (skb_put, skb_push): Fix errors for deprecated use of labels at end of compound statements. * i386/i386/fpe_linkage.c (enable_fpe): Declare prototype. --- linux/dev/include/linux/skbuff.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'linux/dev/include') diff --git a/linux/dev/include/linux/skbuff.h b/linux/dev/include/linux/skbuff.h index 3f3128e..cbaba20 100644 --- a/linux/dev/include/linux/skbuff.h +++ b/linux/dev/include/linux/skbuff.h @@ -407,6 +407,7 @@ extern __inline__ unsigned char *skb_put(struct sk_buff *skb, int len) __label__ here; panic("skput:over: %p:%d", &&here,len); here: + ; } return tmp; } @@ -420,6 +421,7 @@ extern __inline__ unsigned char *skb_push(struct sk_buff *skb, int len) __label__ here; panic("skpush:under: %p:%d", &&here,len); here: + ; } return skb->data; } -- cgit v1.2.3