SDL: Use single line comment format

From dc13c08375df0cd712471557337f363bda9787bc Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Mon, 15 Apr 2024 13:42:28 -0700
Subject: [PATCH] Use single line comment format

---
 src/events/SDL_touch.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/events/SDL_touch.c b/src/events/SDL_touch.c
index 04651f314a313..9682251692356 100644
--- a/src/events/SDL_touch.c
+++ b/src/events/SDL_touch.c
@@ -145,7 +145,7 @@ SDL_Finger **SDL_GetTouchFingers(SDL_TouchID touchID, int *count)
         return NULL;
     }
 
-    /* Create a snapshot of the current finger state */
+    // Create a snapshot of the current finger state
     fingers = (SDL_Finger **)SDL_malloc((touch->num_fingers + 1) * sizeof(*fingers) + touch->num_fingers * sizeof(**fingers));
     if (!fingers) {
         return NULL;