X11: Fix copypaste errors

Related to #1322.
This commit is contained in:
Camilla Löwy 2019-02-25 14:08:41 +01:00
parent d82e7b5cb1
commit 4f14c1e776

View File

@ -354,11 +354,11 @@ void _glfwPlatformGetMonitorWorkarea(_GLFWmonitor* monitor, int* xpos, int* ypos
if (xpos)
*xpos = extents[0];
if (xpos)
if (ypos)
*ypos = extents[1];
if (xpos)
if (width)
*width = extents[2];
if (xpos)
if (height)
*height = extents[3];
XFree(extents);