Commit 627423d1 authored by Evan Deaubl's avatar Evan Deaubl Committed by Alexandre Julliard

Fix an ERR log in X11DRV_CreateWindow.

parent fea1a845
......@@ -980,7 +980,7 @@ BOOL X11DRV_CreateWindow( HWND hwnd, CREATESTRUCTA *cs, BOOL unicode )
}
if (cs->cy > 65535)
{
ERR( "invalid window height %d\n", cs->cx );
ERR( "invalid window height %d\n", cs->cy );
cs->cy = 65535;
}
......
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