Replace a #elif without condition with #else (debian patch #505957).

This commit is contained in:
Mark de Wever 2008-11-17 18:35:16 +00:00
parent 82db069707
commit 4a2740384e
2 changed files with 3 additions and 1 deletions

View file

@ -1,6 +1,8 @@
Version 1.4.6+svn:
* language and i18n:
* updated translations: Danish, Finnish, Italian
* miscellaneous and bug fixes:
* replace a #elif without condition with #else (debian patch #505957)
Version 1.4.6:
* language and i18n:

View file

@ -237,7 +237,7 @@ bool receive_with_timeout(TCPsocket s, char* buf, size_t nbytes,
retval = select(((_TCPsocket*)s)->channel + 1, &readfds, NULL, NULL, &tv);
} while(retval == -1 && errno == EINTR);
#elif
#else
SDL_Delay(5);
#endif
} else {