Commit 1008cc8e5f129f3bc78b982ce8f37f404d69e743

Ryan C. Gordon 2022-11-09T12:55:27

video: Add some braces to match SDL coding style.

diff --git a/src/video/SDL_video.c b/src/video/SDL_video.c
index 56b387d..dde4912 100644
--- a/src/video/SDL_video.c
+++ b/src/video/SDL_video.c
@@ -698,8 +698,9 @@ SDL_GetDisplayBounds(int displayIndex, SDL_Rect * rect)
 
     CHECK_DISPLAY_INDEX(displayIndex, -1);
 
-    if (!rect)
+    if (!rect) {
         return SDL_InvalidParamError("rect");
+    }
 
     display = &_this->displays[displayIndex];
 
@@ -736,8 +737,9 @@ SDL_GetDisplayUsableBounds(int displayIndex, SDL_Rect * rect)
 
     CHECK_DISPLAY_INDEX(displayIndex, -1);
 
-    if (!rect)
+    if (!rect) {
         return SDL_InvalidParamError("rect");
+    }
 
     display = &_this->displays[displayIndex];