From 3720e254c4901da21ef3ff9e5b23d70d113b60fc Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Fri, 2 Apr 2021 12:48:02 +0900 Subject: [PATCH] Trim some stray whitespace --- src/video/windows/SDL_windowswindow.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/video/windows/SDL_windowswindow.c b/src/video/windows/SDL_windowswindow.c index 16401a57b..4d6b685a8 100644 --- a/src/video/windows/SDL_windowswindow.c +++ b/src/video/windows/SDL_windowswindow.c @@ -162,7 +162,7 @@ WIN_SetWindowPositionInternal(_THIS, SDL_Window * window, UINT flags) top = HWND_NOTOPMOST; } - WIN_AdjustWindowRect(window, &x, &y, &w, &h, SDL_TRUE); + WIN_AdjustWindowRect(window, &x, &y, &w, &h, SDL_TRUE); data->expected_resize = SDL_TRUE; SetWindowPos(hwnd, top, x, y, w, h, flags); @@ -364,7 +364,7 @@ WIN_CreateWindow(_THIS, SDL_Window * window) return 0; #else return SDL_SetError("Could not create GLES window surface (EGL support not configured)"); -#endif /* SDL_VIDEO_OPENGL_EGL */ +#endif /* SDL_VIDEO_OPENGL_EGL */ } #endif /* SDL_VIDEO_OPENGL_ES2 */ @@ -559,7 +559,7 @@ WIN_ShowWindow(_THIS, SDL_Window * window) DWORD style; HWND hwnd; int nCmdShow; - + hwnd = ((SDL_WindowData *)window->driverdata)->hwnd; nCmdShow = SW_SHOW; style = GetWindowLong(hwnd, GWL_EXSTYLE);