summaryrefslogtreecommitdiff
path: root/contrib/coccinelle/hashmap.cocci
blob: d69e120ccffc04b29e7e6f83ac382f3492b82037 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@ hashmap_entry_init_usage @
expression E;
struct hashmap_entry HME;
@@
- HME.hash = E;
+ hashmap_entry_init(&HME, E);
 
@@
identifier f !~ "^hashmap_entry_init$";
expression E;
struct hashmap_entry *HMEP;
@@
  f(...) {<...
- HMEP->hash = E;
+ hashmap_entry_init(HMEP, E);
  ...>}