Tim Duesterhus | 63ee0e4 | 2021-09-15 13:58:45 +0200 | [diff] [blame] | 1 | @@ |
2 | type T; | ||||
3 | expression E; | ||||
4 | expression t; | ||||
5 | @@ | ||||
6 | |||||
7 | ( | ||||
8 | t = calloc(E, sizeof(*t)) | ||||
9 | | | ||||
10 | - t = calloc(E, sizeof(T)) | ||||
11 | + t = calloc(E, sizeof(*t)) | ||||
12 | ) | ||||
13 | |||||
14 | @@ | ||||
15 | type T; | ||||
16 | T *x; | ||||
17 | @@ | ||||
18 | |||||
19 | x = malloc( | ||||
20 | - sizeof(T) | ||||
21 | + sizeof(*x) | ||||
22 | ) | ||||
23 | |||||
24 | @@ | ||||
25 | type T; | ||||
26 | T *x; | ||||
27 | @@ | ||||
28 | |||||
29 | x = calloc(1, | ||||
30 | - sizeof(T) | ||||
31 | + sizeof(*x) | ||||
32 | ) | ||||
33 | |||||
34 | @@ | ||||
35 | @@ | ||||
36 | |||||
37 | calloc( | ||||
38 | + 1, | ||||
39 | ... | ||||
40 | - ,1 | ||||
41 | ) |