1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-10-08 07:07:25 -04:00

Formatting.

This commit is contained in:
Camilla Berglund 2012-08-14 16:55:48 +02:00
parent 2b0f8c2f1e
commit 17cac4bfa0

View File

@ -44,12 +44,12 @@
GLFWAPI GLFWmonitor glfwGetNextMonitor(GLFWmonitor handle)
{
_GLFWmonitor* iterator = (_GLFWmonitor*) handle;
_GLFWmonitor* result = NULL;
_GLFWmonitor* result;
if (!_glfwInitialized)
{
_glfwSetError(GLFW_NOT_INITIALIZED, NULL);
return result;
return NULL;
}
if (iterator == NULL)