From 033f2a6dbecc4d58cbb3c03bbac988a969768a2c Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Sun, 30 Apr 2006 08:46:14 +0000 Subject: [PATCH] (coastal_sea_to_land, coastal_land_to_sea): Remove unused parameter des. --- src/lib/subs/coastal.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib/subs/coastal.c b/src/lib/subs/coastal.c index 506dd9e4..7d1bce4d 100644 --- a/src/lib/subs/coastal.c +++ b/src/lib/subs/coastal.c @@ -64,7 +64,7 @@ update_coastal_flag(struct sctstr *sp, struct sctstr *sectp) } static void -coastal_sea_to_land(struct sctstr *sp, int des) +coastal_sea_to_land(struct sctstr *sp) { int n; struct sctstr sect; @@ -78,7 +78,7 @@ coastal_sea_to_land(struct sctstr *sp, int des) } static void -coastal_land_to_sea(struct sctstr *sp, int des) +coastal_land_to_sea(struct sctstr *sp) { int n; struct sctstr sect; @@ -111,7 +111,7 @@ set_coastal(struct sctstr *sp, int des) if (new_water == old_water) return; else if (new_water) - coastal_land_to_sea(sp, des); + coastal_land_to_sea(sp); else - coastal_sea_to_land(sp, des); + coastal_sea_to_land(sp); }