aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorallen <allen@edbb7e70-9571-45d5-a481-0a560a9b4751>2001-05-08 21:20:15 +0000
committerallen <allen@edbb7e70-9571-45d5-a481-0a560a9b4751>2001-05-08 21:20:15 +0000
commit191281d335249727f778d47edd3f209c90220028 (patch)
tree7ce308a6e7d38eb1d7ed89e7a68a1ddbda7a21e6
parentd1d22dc0c67f65fd07dc0c020d1f0dda75d8f448 (diff)
Compiler warning
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinBase/CoordGauge/trunk@35 edbb7e70-9571-45d5-a481-0a560a9b4751
-rw-r--r--src/Slicing.c7
1 files 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);