From 17cac4bfa0c0f945497c2ece30a1b15e354e2fb8 Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Tue, 14 Aug 2012 16:55:48 +0200 Subject: [PATCH] Formatting. --- src/monitor.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/monitor.c b/src/monitor.c index 3ce80f41..87a1aef6 100644 --- a/src/monitor.c +++ b/src/monitor.c @@ -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)