diff options
author | Marcus Brinkmann <marcus@gnu.org> | 2005-01-22 05:35:10 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2009-06-18 00:15:26 +0200 |
commit | e91444faadb368495b75d871ec6614d075e06979 (patch) | |
tree | f80670059ee25ff1ab97acbd7ed75f0035e7ce65 /linux/dev/include | |
parent | b75b2580fd9f0ad612cc92d580ef00bf875aa8cf (diff) |
2005-01-22 Guillem Jover <guillem@hadrons.org>
* 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.
Diffstat (limited to 'linux/dev/include')
-rw-r--r-- | linux/dev/include/linux/skbuff.h | 2 |
1 files changed, 2 insertions, 0 deletions
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; } |