From d31298e2f2364e9cc319ee73df20672f112ecf1a Mon Sep 17 00:00:00 2001 From: tradke Date: Fri, 18 May 2001 23:11:20 +0000 Subject: Fixed gcc warnings. git-svn-id: http://svn.cactuscode.org/arrangements/CactusWave/WaveBinarySource/trunk@22 b9286e40-80fe-41ab-903a-d6b447012e1e --- src/CoordinateStuff.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/CoordinateStuff.c b/src/CoordinateStuff.c index b6b0e33..e9a2b9e 100644 --- a/src/CoordinateStuff.c +++ b/src/CoordinateStuff.c @@ -9,6 +9,10 @@ static const char *rcsid = "$Header$"; CCTK_FILEVERSION(CactusWave_WaveBinarySource_CoordinateStuff_c) +int IndexFloorC(cGH *GH, CCTK_REAL coord_value, int d); +int IndexCeilC(cGH *GH, CCTK_REAL coord_value, int d); + + /*@@ @routine IndexFloor @date Fri Jan 7 10:34:29 2000 @@ -32,7 +36,6 @@ CCTK_FILEVERSION(CactusWave_WaveBinarySource_CoordinateStuff_c) int IndexFloorC(cGH *GH, CCTK_REAL coord_value, int d) { int index_low,idummy; - char *message; CCTK_REAL cmin,cmax; if (d==0) @@ -98,7 +101,6 @@ int IndexFloorC(cGH *GH, CCTK_REAL coord_value, int d) int IndexCeilC(cGH *GH, CCTK_REAL coord_value, int d) { int index_up,idummy; - char *message; CCTK_REAL cmin,cmax; if (d==0) @@ -139,5 +141,3 @@ int IndexCeilC(cGH *GH, CCTK_REAL coord_value, int d) } return(index_up); } - - -- cgit v1.2.3