Jeffrey Smith (@whydoubt) commented about tools/winedump/reg.c:
printf("@="); }
- if (val->data_size)
- data_size = val->data_size;
- if (data_size & 0x80000000)
- {
data = &val->data_off;
data_size &= ~80000000;
```suggestion:-0+0 data_size &= ~0x80000000; ``` Edit: I now see that you fix in a later commit, though it would probably be better to fix up this commit.