Commit 9cd2d61b authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

user32: Remove dead code (clang).

parent 14ac50c7
......@@ -2987,7 +2987,7 @@ DWORD_PTR WINAPI SetSysColorsTemp( const COLORREF *pPens, const HBRUSH *pBrushes
LPVOID p = pOldCol;
*(DWORD *)p = n; p = (char*)p + sizeof(DWORD);
memcpy(p, SysColorPens, n*sizeof(HPEN)); p = (char*)p + n*sizeof(HPEN);
memcpy(p, SysColorBrushes, n*sizeof(HBRUSH)); p = (char*)p + n*sizeof(HBRUSH);
memcpy(p, SysColorBrushes, n*sizeof(HBRUSH));
for (i=0; i < n; i++)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment