From 440e7e36f3394cc486a40a979db5bbe7545fd2b1 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Mon, 29 Jan 2018 02:30:10 +0100 Subject: [PATCH] Fix typography of error messages --- src/wl_init.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/wl_init.c b/src/wl_init.c index b0b1cba1..c9cfc796 100644 --- a/src/wl_init.c +++ b/src/wl_init.c @@ -686,7 +686,7 @@ int _glfwPlatformInit(void) if (!_glfw.wl.cursor.handle) { _glfwInputError(GLFW_PLATFORM_ERROR, - "Wayland: Failed to open libwayland-cursor."); + "Wayland: Failed to open libwayland-cursor"); return GLFW_FALSE; } @@ -703,7 +703,7 @@ int _glfwPlatformInit(void) if (!_glfw.wl.egl.handle) { _glfwInputError(GLFW_PLATFORM_ERROR, - "Wayland: Failed to open libwayland-egl."); + "Wayland: Failed to open libwayland-egl"); return GLFW_FALSE; } @@ -718,7 +718,7 @@ int _glfwPlatformInit(void) if (!_glfw.wl.xkb.handle) { _glfwInputError(GLFW_PLATFORM_ERROR, - "Wayland: Failed to open libxkbcommon."); + "Wayland: Failed to open libxkbcommon"); return GLFW_FALSE; } @@ -798,7 +798,7 @@ int _glfwPlatformInit(void) if (!_glfw.wl.cursorTheme) { _glfwInputError(GLFW_PLATFORM_ERROR, - "Wayland: Unable to load default cursor theme\n"); + "Wayland: Unable to load default cursor theme"); return GLFW_FALSE; } _glfw.wl.cursorSurface =