Index: /issm/trunk/src/mex/InputUpdateFromVector/InputUpdateFromVector.cpp
===================================================================
--- /issm/trunk/src/mex/InputUpdateFromVector/InputUpdateFromVector.cpp	(revision 7174)
+++ /issm/trunk/src/mex/InputUpdateFromVector/InputUpdateFromVector.cpp	(revision 7175)
@@ -16,6 +16,6 @@
 	double*  vector=NULL;
 	int      dummy;
-	int      NameEnum;
-	int      TypeEnum;
+	int      name;
+	int      type;
 
 	/*Boot module: */
@@ -33,10 +33,10 @@
 	FetchParams(&parameters,PARAMETERSIN);
 	FetchData(&vector,&dummy,VECTOR);
-	FetchData(&NameEnum,NAME);
-	FetchData(&TypeEnum,TYPE);
+	FetchData(&name,NAME);
+	FetchData(&type,TYPE);
 
 	/*Check that type is one of Constant, Vertex or Element: */
-	if ((TypeEnum!=ConstantEnum) && (TypeEnum!=VertexEnum) && (TypeEnum!=ElementEnum)){
-		_error_("%s%s%s\n","Type of input can only be a constant, a vertex or an element vector.  Right now, you input a ",EnumToString(TypeEnum)," type data for input update");
+	if ((type!=ConstantEnum) && (type!=VertexEnum) && (type!=ElementEnum)){
+		_error_("%s%s%s\n","Type of input can only be a constant, a vertex or an element vector.  Right now, you input a ",EnumToString(type)," type data for input update");
 	}
 
@@ -47,5 +47,5 @@
 
 	/*!Generate internal degree of freedom numbers: */
-	InputUpdateFromVectorx(elements,nodes,vertices,loads, materials,parameters,vector,NameEnum,TypeEnum);
+	InputUpdateFromVectorx(elements,nodes,vertices,loads, materials,parameters,vector,name,type);
 
 	/*write output datasets: */
