25 Sep
2023
25 Sep
'23
7:23 p.m.
Jeffrey Smith (@whydoubt) commented about dlls/gdiplus/tests/image.c:
} }
+INT compare_with_precision(const void *ptr1, const void *ptr2, size_t num, INT precision)
Not a big deal, but arrays of `BYTE`'s are passed in and internally you are comparing as `unsigned char` (which is equivalent to `BYTE`). So I would stick with `BYTE`, and change the parameter types to `const BYTE *`. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/3936#note_46693