From 836dad75ae271e8472ddd499bce24268d38a920a Mon Sep 17 00:00:00 2001
From: Eddy Jansson <[EMAIL REDACTED]>
Date: Sun, 9 Nov 2025 16:04:53 +0100
Subject: [PATCH] Remove redundant semicolons.
[ci skip]
---
src/camera/vita/SDL_camera_vita.c | 2 +-
src/io/SDL_iostream.c | 4 ++--
src/video/x11/SDL_x11mouse.c | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/camera/vita/SDL_camera_vita.c b/src/camera/vita/SDL_camera_vita.c
index 874c6d8df3e9a..813f2a1a5fbfd 100644
--- a/src/camera/vita/SDL_camera_vita.c
+++ b/src/camera/vita/SDL_camera_vita.c
@@ -139,7 +139,7 @@ static bool VITACAMERA_OpenDevice(SDL_Camera *device, const SDL_CameraSpec *spec
info->format = SCE_CAMERA_FORMAT_YUV420_PLANE;
info->pitch = 0; // same size surface
- info->sizeIBase = spec->width * spec->height;;
+ info->sizeIBase = spec->width * spec->height;
info->sizeUBase = ((spec->width+1)/2) * ((spec->height+1) / 2);
info->sizeVBase = ((spec->width+1)/2) * ((spec->height+1) / 2);
diff --git a/src/io/SDL_iostream.c b/src/io/SDL_iostream.c
index 1c66e4b11e458..896da57ce52b4 100644
--- a/src/io/SDL_iostream.c
+++ b/src/io/SDL_iostream.c
@@ -458,7 +458,7 @@ static size_t SDLCALL fd_read(void *userdata, void *ptr, size_t size, SDL_IOStat
} else if (result == 0) {
*status = SDL_IO_STATUS_EOF;
} else if (result < size) {
- *status = SDL_IO_STATUS_NOT_READY;;
+ *status = SDL_IO_STATUS_NOT_READY;
}
return (size_t)bytes;
}
@@ -496,7 +496,7 @@ static size_t SDLCALL fd_write(void *userdata, const void *ptr, size_t size, SDL
bytes = 0;
}
} else if (result < size) {
- *status = SDL_IO_STATUS_NOT_READY;;
+ *status = SDL_IO_STATUS_NOT_READY;
}
return (size_t)bytes;
diff --git a/src/video/x11/SDL_x11mouse.c b/src/video/x11/SDL_x11mouse.c
index 1e12a622eb39c..64b2c3ee3f927 100644
--- a/src/video/x11/SDL_x11mouse.c
+++ b/src/video/x11/SDL_x11mouse.c
@@ -270,7 +270,7 @@ static SDL_Cursor *X11_CreateAnimatedCursor(SDL_CursorFrameInfo *frames, int num
x11_cursor = X11_CreatePixmapCursor(frames[0].surface, hot_x, hot_y);
}
- return X11_CreateCursorAndData(x11_cursor);;
+ return X11_CreateCursorAndData(x11_cursor);
}
static unsigned int GetLegacySystemCursorShape(SDL_SystemCursor id)