Fix whitespace: space before tab

This commit is contained in:
Markus Armbruster 2008-09-17 19:29:42 -04:00
parent db4770426e
commit a9653c475b
17 changed files with 28 additions and 28 deletions

View file

@ -54,7 +54,7 @@ fina(void)
return RET_FAIL;
}
if (!snxtitem(&ni, EF_LOAN, "*", NULL))
return RET_SYN;
return RET_SYN;
(void)time(&now);
pr("\n");
pr(" -= Empire Financial Status Report =- \n");

View file

@ -155,7 +155,7 @@ landmine(void)
prland(&land), total_mines_laid,
xyas(sect.sct_x, sect.sct_y, land.lnd_own));
if (!shells)
pr(" but is now out of supply\n");
pr(" but is now out of supply\n");
else
pr("\n");
} else

View file

@ -52,7 +52,7 @@ nati(void)
if (!(natp = natargp(player->argp[1], NULL)))
return RET_SYN;
} else
natp = getnatp(player->cnum);
natp = getnatp(player->cnum);
cnum = natp->nat_cnum;
if (!player->god && cnum != player->cnum) {

View file

@ -62,7 +62,7 @@ news(void)
char *verb;
if (!snxtitem(&nstr, EF_NEWS, "*", NULL))
return RET_SYN;
return RET_SYN;
memset(page_has_news, 0, sizeof(page_has_news));
memset(sectors_taken, 0, sizeof(sectors_taken));
(void)time(&now);

View file

@ -114,7 +114,7 @@ turn(void)
return RET_FAIL;
}
if (fclose(fptr)) {
pr("Something went wrong closing the message.\n");
pr("Something went wrong closing the message.\n");
logerror("Could not properly close message file (%s).\n",
msgfilepath);
return RET_FAIL;

View file

@ -163,7 +163,7 @@ double hap_cons = 600000.0;
double edu_cons = 600000.0;
/* hap and edu avg mean that the weight on current happiness is
* (cur_hap * hap_avg + hap_prod * etu) / (hap_avg + etu); */
* (cur_hap * hap_avg + hap_prod * etu) / (hap_avg + etu); */
float hap_avg = 16.0 * 3.0;
float edu_avg = 16.0 * 12.0;

View file

@ -186,9 +186,9 @@ player_accept(void *unused)
np = player_new(ns);
if (!np) {
logerror("can't create player for fd %d", ns);
close(ns);
continue;
}
close(ns);
continue;
}
#ifdef HAVE_GETADDRINFO
inaddr = sap->sa_family == AF_INET
? (void *)&((struct sockaddr_in *)sap)->sin_addr

View file

@ -299,7 +299,7 @@ show_motd(void)
char buf[MAXTELSIZE + 1]; /* UTF-8 */
if ((motd_fp = fopen(motdfil, "rb")) == NULL) {
if (errno == ENOENT)
if (errno == ENOENT)
return RET_OK;
else {
pr ("Could not open motd.\n");

View file

@ -48,14 +48,14 @@ static int s_commod(int, int, int, i_type, int, int);
/*
* We want to get enough guns to be maxed out, enough shells to
* fire once, one update's worth of food.
* fire once, one update's worth of food.
*
* Firts, try to forage in the sector
* Second look for a warehouse or headquarters to leech
* Third, look for a ship we own in a harbor
* Fourth, look for supplies in a supply unit we own
* (one good reason to do this last is that the supply
* unit will then call resupply, taking more time)
* (one good reason to do this last is that the supply
* unit will then call resupply, taking more time)
*
* May want to put code to resupply with SAMs here, later --ts
*/

View file

@ -158,7 +158,7 @@ typed_wu(natid from, natid to, char *message, int type)
if (writev(fd, iov, 2) < (int)(iov[0].iov_len + iov[1].iov_len)) {
logerror("telegram 'write' to #%d failed", to);
} else
write_ok = 1;
write_ok = 1;
if (close(fd) == -1) {
logerror("telegram 'write' to #%d failed to close.", to);

View file

@ -62,8 +62,8 @@ install_service(char *program_name, char *service_name, char *config_file)
}
schService = CreateService(schSCManager,
service_name,
service_name, /* service name to display */
service_name,
service_name, /* service name to display */
SERVICE_ALL_ACCESS, /* desired access */
SERVICE_WIN32_OWN_PROCESS, /* service type */
SERVICE_AUTO_START, /* start type */

View file

@ -121,12 +121,12 @@ main(int argc, char *argv[])
}
if (!force) {
printf("WARNING: this blasts the existing game in %s (if any)\n",
printf("WARNING: this blasts the existing game in %s (if any)\n",
gamedir);
printf("continue? ");
fgets(buf, sizeof(buf), stdin);
if (*buf != 'y' && *buf != 'Y')
exit(1);
printf("continue? ");
fgets(buf, sizeof(buf), stdin);
if (*buf != 'y' && *buf != 'Y')
exit(1);
}
for (i = 0; i < EF_MAX; i++) {
if (!EF_IS_GAME_STATE(i))