瀏覽代碼

Remove trailing comma in enum

Petar Popovic 1 年之前
父節點
當前提交
dee62e1b47
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      include/SDL3/SDL_process.h

+ 1 - 1
include/SDL3/SDL_process.h

@@ -145,7 +145,7 @@ typedef enum SDL_ProcessIO
     SDL_PROCESS_STDIO_INHERITED,    /**< The I/O stream is inherited from the application. */
     SDL_PROCESS_STDIO_INHERITED,    /**< The I/O stream is inherited from the application. */
     SDL_PROCESS_STDIO_NULL,         /**< The I/O stream is ignored. */
     SDL_PROCESS_STDIO_NULL,         /**< The I/O stream is ignored. */
     SDL_PROCESS_STDIO_APP,          /**< The I/O stream is connected to a new SDL_IOStream that the application can read or write */
     SDL_PROCESS_STDIO_APP,          /**< The I/O stream is connected to a new SDL_IOStream that the application can read or write */
-    SDL_PROCESS_STDIO_REDIRECT,     /**< The I/O stream is redirected to an existing SDL_IOStream. */
+    SDL_PROCESS_STDIO_REDIRECT      /**< The I/O stream is redirected to an existing SDL_IOStream. */
 } SDL_ProcessIO;
 } SDL_ProcessIO;
 
 
 /**
 /**