Browse Source

wayland: Minor whitespace cleanup in clipboard.c

Ethan Lee 4 years ago
parent
commit
e28d978509
1 changed files with 4 additions and 4 deletions
  1. 4 4
      src/video/wayland/SDL_waylandclipboard.c

+ 4 - 4
src/video/wayland/SDL_waylandclipboard.c

@@ -30,9 +30,9 @@ Wayland_SetClipboardText(_THIS, const char *text)
 {
     SDL_VideoData *video_data = NULL;
     SDL_WaylandDataDevice *data_device = NULL;
-    
+
     int status = 0;
- 
+
     if (_this == NULL || _this->driverdata == NULL) {
         status = SDL_SetError("Video driver uninitialized");
     } else {
@@ -67,7 +67,7 @@ Wayland_GetClipboardText(_THIS)
 
     void *buffer = NULL;
     size_t length = 0;
- 
+
     if (_this == NULL || _this->driverdata == NULL) {
         SDL_SetError("Video driver uninitialized");
     } else {
@@ -103,7 +103,7 @@ Wayland_HasClipboardText(_THIS)
     SDL_VideoData *video_data = NULL;
     SDL_WaylandDataDevice *data_device = NULL;
 
-    SDL_bool result = SDL_FALSE;    
+    SDL_bool result = SDL_FALSE;
     if (_this == NULL || _this->driverdata == NULL) {
         SDL_SetError("Video driver uninitialized");
     } else {