Index: /issm/trunk-jpl/src/c/cores/sealevelrise_core.cpp
===================================================================
--- /issm/trunk-jpl/src/c/cores/sealevelrise_core.cpp	(revision 20234)
+++ /issm/trunk-jpl/src/c/cores/sealevelrise_core.cpp	(revision 20235)
@@ -109,6 +109,6 @@
 	
 	/*retrieve the inter communicators that will be used to send data from each ice cap to the earth: */
-	if(modelid==earthid)femmodel->parameters->FindParam(&fromcomms,&nv,IcecapToEarthCommEnum);
-	else femmodel->parameters->FindParam(&tocomm, IcecapToEarthCommEnum);
+	if(modelid==earthid)femmodel->parameters->FindParam((int**)(&fromcomms),&nv,IcecapToEarthCommEnum);
+	else femmodel->parameters->FindParam((int*)(&tocomm), IcecapToEarthCommEnum);
 
 	/*For each icecap, retrieve the forcing vector that will be sent to the earth model: */
@@ -228,6 +228,6 @@
 	
 	/*retrieve the inter communicators that will be used to send data from earth to ice caps:*/
-	if(modelid==earthid)femmodel->parameters->FindParam(&tocomms,&numcoms,IcecapToEarthCommEnum);
-	else femmodel->parameters->FindParam(&fromcomm, IcecapToEarthCommEnum);
+	if(modelid==earthid)femmodel->parameters->FindParam((int**)(&tocomms),&numcoms,IcecapToEarthCommEnum);
+	else femmodel->parameters->FindParam((int*)(&fromcomm), IcecapToEarthCommEnum);
 
 
Index: /issm/trunk-jpl/src/c/main/issm_slr.cpp
===================================================================
--- /issm/trunk-jpl/src/c/main/issm_slr.cpp	(revision 20234)
+++ /issm/trunk-jpl/src/c/main/issm_slr.cpp	(revision 20235)
@@ -99,5 +99,5 @@
 	femmodel->parameters->AddObject(new IntParam(ModelIdEnum,modelid));
 	femmodel->parameters->AddObject(new IntParam(EarthIdEnum,earthid));
-	if(modelid==earthid)femmodel->parameters->AddObject(new IntVecParam(IcecapToEarthCommEnum,fromicecomms,nummodels-1));
+	if(modelid==earthid)femmodel->parameters->AddObject(new IntVecParam(IcecapToEarthCommEnum,(int*)fromicecomms,nummodels-1));
 	else femmodel->parameters->AddObject(new IntParam(IcecapToEarthCommEnum,toearthcomm));
 
