(coastal_sea_to_land, coastal_land_to_sea): Remove unused parameter
des.
This commit is contained in:
parent
8f998de170
commit
033f2a6dbe
1 changed files with 4 additions and 4 deletions
|
@ -64,7 +64,7 @@ update_coastal_flag(struct sctstr *sp, struct sctstr *sectp)
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
coastal_sea_to_land(struct sctstr *sp, int des)
|
coastal_sea_to_land(struct sctstr *sp)
|
||||||
{
|
{
|
||||||
int n;
|
int n;
|
||||||
struct sctstr sect;
|
struct sctstr sect;
|
||||||
|
@ -78,7 +78,7 @@ coastal_sea_to_land(struct sctstr *sp, int des)
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
coastal_land_to_sea(struct sctstr *sp, int des)
|
coastal_land_to_sea(struct sctstr *sp)
|
||||||
{
|
{
|
||||||
int n;
|
int n;
|
||||||
struct sctstr sect;
|
struct sctstr sect;
|
||||||
|
@ -111,7 +111,7 @@ set_coastal(struct sctstr *sp, int des)
|
||||||
if (new_water == old_water)
|
if (new_water == old_water)
|
||||||
return;
|
return;
|
||||||
else if (new_water)
|
else if (new_water)
|
||||||
coastal_land_to_sea(sp, des);
|
coastal_land_to_sea(sp);
|
||||||
else
|
else
|
||||||
coastal_sea_to_land(sp, des);
|
coastal_sea_to_land(sp);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue