| CODENOTIFIER | HelpYou are not signed inSign in |
Project: Freeciv
Revision: 15187
Author: cazfi
Date: 29 Aug 2008 11:17:57
Changes:Fixed ftwl-client compilation.
See #40471
Files:| ... | ...@@ -252,7 +252,7 @@ | |
| 252 | 252 | } |
| 253 | 253 | } |
| 254 | 254 | |
| 255 | ret = my_select(highest + 1, &readfds, NULL, &exceptfds, timeout); | |
| 255 | ret = fc_select(highest + 1, &readfds, NULL, &exceptfds, timeout); | |
| 256 | 256 | if (ret == 0) { |
| 257 | 257 | // timed out |
| 258 | 258 | event->type = BE_TIMEOUT; |
| ... | ...@@ -145,11 +145,11 @@ | |
| 145 | 145 | add_line(_("Location: (%d, %d) [%d]"), |
| 146 | 146 | TILE_XY(ptile), |
| 147 | 147 | tile_continent(ptile)); |
| 148 | #endif | |
| 148 | #endif /* DEBUG */ | |
| 149 | 149 | add_line("%s", tile_get_info_text(ptile, 0)); |
| 150 | 150 | if (count > 0) { |
| 151 | 151 | add_line("%s", |
| 152 | get_infrastructure_text(infrastructure)); | |
| 152 | get_infrastructure_text(infrastructure, ptile->bases)); | |
| 153 | 153 | } |
| 154 | 154 | RETURN; |
| 155 | 155 | } |
| ... | ...@@ -193,7 +193,7 @@ | |
| 193 | 193 | zero_timeout.tv_sec = 0; |
| 194 | 194 | zero_timeout.tv_usec = 0; |
| 195 | 195 | |
| 196 | ret = my_select(other_fd + 1, &readfds, NULL, &exceptfds, &zero_timeout); | |
| 196 | ret = fc_select(other_fd + 1, &readfds, NULL, &exceptfds, &zero_timeout); | |
| 197 | 197 | if (ret > 0 && (FD_ISSET(other_fd, &readfds) || |
| 198 | 198 | FD_ISSET(other_fd, &exceptfds))) { |
| 199 | 199 | event->type = BE_DATA_OTHER_FD; |