From 94d56d1a9ee425934cc8db4faf55b4c663a79099 Mon Sep 17 00:00:00 2001 From: Luflosi Date: Sat, 24 Aug 2019 01:37:27 +0200 Subject: [PATCH] Correct indentation for two _glfwInputError() messages This commit changes the indentation of two error messages to match the indentation in the rest of the code. --- glfw/cocoa_window.m | 4 ++-- glfw/wl_window.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/glfw/cocoa_window.m b/glfw/cocoa_window.m index 847000345..8c15b36a1 100644 --- a/glfw/cocoa_window.m +++ b/glfw/cocoa_window.m @@ -692,8 +692,8 @@ static GLFWapplicationshouldhandlereopenfun handle_reopen_callback = NULL; [window->context.nsgl.object update]; } @catch (NSException *e) { _glfwInputError(GLFW_PLATFORM_ERROR, - "Failed to update NSGL Context object with error: %s (%s)", - [[e name] UTF8String], [[e reason] UTF8String]); + "Failed to update NSGL Context object with error: %s (%s)", + [[e name] UTF8String], [[e reason] UTF8String]); } } diff --git a/glfw/wl_window.c b/glfw/wl_window.c index 7ff5c36cb..a88648b84 100644 --- a/glfw/wl_window.c +++ b/glfw/wl_window.c @@ -1836,7 +1836,7 @@ static inline bool _glfwEnsureDataDevice(void) { if (!_glfw.wl.dataDevice) { _glfwInputError(GLFW_PLATFORM_ERROR, - "Wayland: Cannot use clipboard, failed to create data device"); + "Wayland: Cannot use clipboard, failed to create data device"); return false; } }