Browse Source

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

Anonymous Maarten 2 years ago
parent
commit
ec14487e1d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/timer/unix/SDL_systimer.c

+ 1 - 1
src/timer/unix/SDL_systimer.c

@@ -179,7 +179,7 @@ void SDL_DelayNS(Uint64 ns)
             break;
             break;
         }
         }
         ns -= elapsed;
         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);
         tv.tv_usec = SDL_NS_TO_US(ns % SDL_NS_PER_SECOND);
 
 
         was_error = select(0, NULL, NULL, NULL, &tv);
         was_error = select(0, NULL, NULL, NULL, &tv);