SDL: unix/SDL_systimer.c: add ';' to statement

From ec14487e1deb6881906f53ff1a43f6317df2f884 Mon Sep 17 00:00:00 2001
From: Anonymous Maarten <[EMAIL REDACTED]>
Date: Sat, 7 Jan 2023 23:46:52 +0100
Subject: [PATCH] unix/SDL_systimer.c: add ';' to statement

---
 src/timer/unix/SDL_systimer.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/timer/unix/SDL_systimer.c b/src/timer/unix/SDL_systimer.c
index 223d1700f1f0..d3d1afe504f1 100644
--- a/src/timer/unix/SDL_systimer.c
+++ b/src/timer/unix/SDL_systimer.c
@@ -179,7 +179,7 @@ void SDL_DelayNS(Uint64 ns)
             break;
         }
         ns -= elapsed;
-        tv.tv_sec = (ns / SDL_NS_PER_SECOND)
+        tv.tv_sec = (ns / SDL_NS_PER_SECOND);
         tv.tv_usec = SDL_NS_TO_US(ns % SDL_NS_PER_SECOND);
 
         was_error = select(0, NULL, NULL, NULL, &tv);