From fbc4d3e1be8ce5751bb85fe7c5923665ae9746ad Mon Sep 17 00:00:00 2001 From: Luflosi Date: Sat, 8 Jun 2019 00:43:18 +0200 Subject: [PATCH] Remove extra spaces --- glfw/cocoa_monitor.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glfw/cocoa_monitor.m b/glfw/cocoa_monitor.m index bc55b8b8b..dab1e03b1 100644 --- a/glfw/cocoa_monitor.m +++ b/glfw/cocoa_monitor.m @@ -220,7 +220,7 @@ GLFWbool refreshMonitorScreen(_GLFWmonitor* monitor) if (monitor->ns.screen) return GLFW_TRUE; - for (NSScreen* screen in [NSScreen screens]) + for (NSScreen* screen in [NSScreen screens]) { NSNumber* displayID = [screen deviceDescription][@"NSScreenNumber"]; @@ -234,7 +234,7 @@ GLFWbool refreshMonitorScreen(_GLFWmonitor* monitor) } } - _glfwInputError(GLFW_PLATFORM_ERROR, "Cocoa: Failed to find a screen for monitor"); + _glfwInputError(GLFW_PLATFORM_ERROR, "Cocoa: Failed to find a screen for monitor"); return GLFW_FALSE; }