From 191281d335249727f778d47edd3f209c90220028 Mon Sep 17 00:00:00 2001 From: allen Date: Tue, 8 May 2001 21:20:15 +0000 Subject: Compiler warning git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinBase/CoordGauge/trunk@35 edbb7e70-9571-45d5-a481-0a560a9b4751 --- src/Slicing.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/Slicing.c b/src/Slicing.c index 3f1f47c..72c099d 100644 --- a/src/Slicing.c +++ b/src/Slicing.c @@ -230,7 +230,7 @@ void Einstein_ActivateSlicing(cGH *GH) struct Einstein_slicing *slic; CCTK_INT *active_slicing_handle; - int handle, priority, i, ierr; + int handle, priority, i; int handle2; char *err, *split_string; char *item=NULL, *after=NULL; @@ -316,7 +316,7 @@ void Einstein_ActivateSlicing(cGH *GH) sprintf(split_string,"%s ",mixed_slicing); /* Here we take the string appart */ - ierr=Util_SplitString(&item,&after,split_string," "); + Util_SplitString(&item,&after,split_string," "); /*printf(" item >%s< after: >%s< \n",item,after);*/ priority = 1; @@ -354,8 +354,7 @@ void Einstein_ActivateSlicing(cGH *GH) #endif priority++; split_string = after; - ierr=Util_SplitString(&item,&after,split_string," "); - /*printf(" item >%s< after: >%s< %d\n",item,after,ierr);*/ + Util_SplitString(&item,&after,split_string," "); } if (item) free(item); -- cgit v1.2.3