21 Nov
2024
21 Nov
'24
10:10 a.m.
Hans Leidekker (@hans) commented about dlls/icmui/tests/icmui.c:
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + * + */ + +#include "wine/test.h" +#include "wingdi.h" +#include "winuser.h" +#include "icm.h" + +static void test_SetupColorMatchingW(void) +{ + COLORMATCHSETUPW cms; + BOOL ret; + + memset( &cms, 0, sizeof( cms ) ); + ret = TRUE; This assignment is redundant. Otherwise this looks good.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/6830#note_88269