Rémi Bernon (@rbernon) commented about dlls/dmime/tempotrack.c:
TRACE("(%p) ref=%ld\n", This, ref); if (!ref) {
free(This->items);
struct tempo_entry *item, *next_item;
LIST_FOR_EACH_ENTRY_SAFE(item, next_item, &This->items, struct tempo_entry, entry) {
```suggestion:-3+0
if (!ref) { struct tempo_entry *item, *next_item;
LIST_FOR_EACH_ENTRY_SAFE(item, next_item, &This->items, struct tempo_entry, entry) { ```
Lets fix those braces instead.