Removed trailing commas in enums

This commit is contained in:
Petar Popovic
2024-09-01 07:08:50 +02:00
committed by Sam Lantinga
parent d4b8072614
commit 1751e127c8
3 changed files with 3 additions and 3 deletions

View File

@@ -72,7 +72,7 @@ typedef enum SDL_IOWhence
{
SDL_IO_SEEK_SET, /**< Seek from the beginning of data */
SDL_IO_SEEK_CUR, /**< Seek relative to current read point */
SDL_IO_SEEK_END, /**< Seek relative to the end of data */
SDL_IO_SEEK_END /**< Seek relative to the end of data */
} SDL_IOWhence;
/**