SDL: Fix missing parens in preprocessor defined op

From ca4ffc8a006eb0aea8708f8660bee59dd963293b Mon Sep 17 00:00:00 2001
From: Maia <[EMAIL REDACTED]>
Date: Sun, 22 Dec 2024 15:41:59 +0100
Subject: [PATCH] Fix missing parens in preprocessor defined op

---
 include/SDL3/SDL_assert.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/SDL3/SDL_assert.h b/include/SDL3/SDL_assert.h
index 258bab2dfce57..aeaa622396f18 100644
--- a/include/SDL3/SDL_assert.h
+++ b/include/SDL3/SDL_assert.h
@@ -226,7 +226,7 @@ disable assertions.
  */
 #define SDL_NULL_WHILE_LOOP_CONDITION (0)
 
-#elif defined _MSC_VER  /* Avoid /W4 warnings. */
+#elif defined(_MSC_VER)  /* Avoid /W4 warnings. */
 /* "while (0,0)" fools Microsoft's compiler's /W4 warning level into thinking
     this condition isn't constant. And looks like an owl's face! */
 #define SDL_NULL_WHILE_LOOP_CONDITION (0,0)