Merge branch 'ps/report-failure-from-git-stash' into maint-2.43
[git.git] / contrib / coccinelle / hashmap.cocci
blobc5dbb4557b56b130d1ed518af1ccdff6c112d7a6
1 @@
2 expression E;
3 struct hashmap_entry HME;
4 @@
5 - HME.hash = E;
6 + hashmap_entry_init(&HME, E);
8 @@
9 identifier f !~ "^hashmap_entry_init$";
10 expression E;
11 struct hashmap_entry *HMEP;
13   f(...) {<...
14 - HMEP->hash = E;
15 + hashmap_entry_init(HMEP, E);
16   ...>}