Clean up more unreadable assignments within if conditionals

This commit is contained in:
Markus Armbruster 2009-03-23 22:43:52 +01:00
parent 6459cfce7b
commit a2ed975ec2
19 changed files with 92 additions and 81 deletions

View file

@ -114,7 +114,8 @@ trad(void)
pr("Nothing to buy at the moment...\n");
return RET_OK;
}
if ((p = getstring("Which lot to buy: ", buf)) == 0 || *p == 0)
p = getstring("Which lot to buy: ", buf);
if (!p || !*p)
return RET_OK;
if (isdigit(*p) == 0)
return RET_OK;
@ -239,7 +240,8 @@ trad(void)
}
}
if ((p = getstring("How much do you bid: ", buf)) == 0 || *p == 0)
p = getstring("How much do you bid: ", buf);
if (!p || !*p)
return RET_OK;
if (!trade_check_ok(&trade, &tg))
return RET_FAIL;