diff -r bb3241de289e -r e27bdcc80744 src/audio/paudio/SDL_paudio.c --- a/src/audio/paudio/SDL_paudio.c Wed Apr 23 06:27:10 2008 +0000 +++ b/src/audio/paudio/SDL_paudio.c Tue Jun 10 06:45:39 2008 +0000 @@ -208,9 +208,8 @@ if ((written < 0) && ((errno == 0) || (errno == EAGAIN))) { SDL_Delay(1); /* Let a little CPU time go by */ } - } - while ((written < 0) && - ((errno == 0) || (errno == EAGAIN) || (errno == EINTR))); + } while ((written < 0) && + ((errno == 0) || (errno == EAGAIN) || (errno == EINTR))); /* If timer synchronization is enabled, set the next write frame */ if (this->hidden->frame_ticks) {