SDL: include/SDL_video.h: Remove a comma at end of enumerator list

From 966728db2aff4bd85f3fc9485e4e72bfa06bc4f0 Mon Sep 17 00:00:00 2001
From: YuGiOhJCJ <[EMAIL REDACTED]>
Date: Mon, 16 Aug 2021 06:43:37 +0200
Subject: [PATCH] include/SDL_video.h: Remove a comma at end of enumerator list

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

diff --git a/include/SDL_video.h b/include/SDL_video.h
index b6eb25582a..7474525474 100644
--- a/include/SDL_video.h
+++ b/include/SDL_video.h
@@ -207,7 +207,7 @@ typedef enum
 {
     SDL_FLASH_CANCEL,                   /**< Cancel any window flash state */
     SDL_FLASH_BRIEFLY,                  /**< Flash the window briefly to get attention */
-    SDL_FLASH_UNTIL_FOCUSED,            /**< Flash the window until it gets focus */
+    SDL_FLASH_UNTIL_FOCUSED             /**< Flash the window until it gets focus */
 } SDL_FlashOperation;
 
 /**