Release coccinelle-0.1
[bpt/coccinelle.git] / tests / type_annotated_fields.cocci
1 @@
2 struct sk_buff *skb;
3 @@
4
5 // and not
6 // @@
7 // expression skb;
8 // @@
9
10
11 (
12 - &(skb->pkt_type)
13 + &bt_cb(skb)->pkt_type
14 |
15 - skb->pkt_type
16 + bt_cb(skb)->pkt_type
17 )