From d6243c63fe83a63a355b81e9b1057a473ac8f6f7 Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Wed, 19 Mar 2014 16:45:08 +0100 Subject: [PATCH] Removed tab characters. --- src/wayland_init.c | 4 ++-- src/wayland_window.c | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/wayland_init.c b/src/wayland_init.c index d05ef407..22b380b5 100644 --- a/src/wayland_init.c +++ b/src/wayland_init.c @@ -73,11 +73,11 @@ static void registryHandleGlobal(void* data, else if (strcmp(interface, "wl_shell") == 0) { _glfw.wl.shell = - wl_registry_bind(registry, name, &wl_shell_interface, 1); + wl_registry_bind(registry, name, &wl_shell_interface, 1); } else if (strcmp(interface, "wl_output") == 0) { - _glfwAddOutput(name, version); + _glfwAddOutput(name, version); } } diff --git a/src/wayland_window.c b/src/wayland_window.c index 19d6bf2d..b5f7861c 100644 --- a/src/wayland_window.c +++ b/src/wayland_window.c @@ -104,11 +104,11 @@ int _glfwPlatformCreateWindow(_GLFWwindow* window, if (wndconfig->monitor) { - wl_shell_surface_set_fullscreen( - window->wl.shell_surface, - WL_SHELL_SURFACE_FULLSCREEN_METHOD_DEFAULT, - 0, - wndconfig->monitor->wl.output); + wl_shell_surface_set_fullscreen( + window->wl.shell_surface, + WL_SHELL_SURFACE_FULLSCREEN_METHOD_DEFAULT, + 0, + wndconfig->monitor->wl.output); } else {