Author: mordante
Date: Mon Nov 17 19:35:16 2008
New Revision: 30791

URL: http://svn.gna.org/viewcvs/wesnoth?rev=30791&view=rev
Log:
Replace a #elif without condition with #else (debian patch #505957).

Modified:
    branches/1.4/changelog
    branches/1.4/src/network_worker.cpp

Modified: branches/1.4/changelog
URL: 
http://svn.gna.org/viewcvs/wesnoth/branches/1.4/changelog?rev=30791&r1=30790&r2=30791&view=diff
==============================================================================
--- branches/1.4/changelog (original)
+++ branches/1.4/changelog Mon Nov 17 19:35:16 2008
@@ -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:

Modified: branches/1.4/src/network_worker.cpp
URL: 
http://svn.gna.org/viewcvs/wesnoth/branches/1.4/src/network_worker.cpp?rev=30791&r1=30790&r2=30791&view=diff
==============================================================================
--- branches/1.4/src/network_worker.cpp (original)
+++ branches/1.4/src/network_worker.cpp Mon Nov 17 19:35:16 2008
@@ -237,7 +237,7 @@
                                        retval = 
select(((_TCPsocket*)s)->channel + 1, &readfds, NULL, NULL, &tv);
                                } while(retval == -1 && errno == EINTR);
 
-#elif
+#else
                                SDL_Delay(5);
 #endif
                        } else {


_______________________________________________
Wesnoth-commits mailing list
[email protected]
https://mail.gna.org/listinfo/wesnoth-commits

Reply via email to