Remove silly superflous parenthesis.
This commit is contained in:
parent
e59c4bcfd0
commit
e29f288289
8 changed files with 23 additions and 23 deletions
|
@ -271,8 +271,8 @@ bp_realcost(struct as_coord from, struct as_coord to, s_char *pp)
|
|||
static double
|
||||
bp_seccost(struct as_coord from, struct as_coord to, s_char *pp)
|
||||
{
|
||||
return ((double)mapdist((coord)from.x, (coord)from.y,
|
||||
(coord)to.x, (coord)to.y));
|
||||
return (double)mapdist((coord)from.x, (coord)from.y,
|
||||
(coord)to.x, (coord)to.y);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue