repo.or.cz
/
git
/
raj.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
l10n: fr 2.24.0 rnd 1
[git/raj.git]
/
contrib
/
coccinelle
/
hashmap.cocci
blob
d69e120ccffc04b29e7e6f83ac382f3492b82037
1
@ hashmap_entry_init_usage @
2
expression E;
3
struct hashmap_entry HME;
4
@@
5
- HME.hash = E;
6
+ hashmap_entry_init(&HME, E);
7
8
@@
9
identifier f !~ "^hashmap_entry_init$";
10
expression E;
11
struct hashmap_entry *HMEP;
12
@@
13
f(...) {<...
14
- HMEP->hash = E;
15
+ hashmap_entry_init(HMEP, E);
16
...>}