Index: /issm/trunk-jpl/src/c/modules/Shp2Expx/Shp2Expx.cpp
===================================================================
--- /issm/trunk-jpl/src/c/modules/Shp2Expx/Shp2Expx.cpp	(revision 15163)
+++ /issm/trunk-jpl/src/c/modules/Shp2Expx/Shp2Expx.cpp	(revision 15164)
@@ -6,4 +6,5 @@
 #include "../../shared/shared.h"
 #include "../../toolkits/toolkits.h"
+#include "../../kml/kmlobjects.h"
 
 int Shp2Expx(char* filshp,char* filexp){
@@ -562,5 +563,5 @@
 
 		else {
-			_printf_(,"Warning -- Shape " << i << " of type \"" <<SHPTypeName( pstype[i] ) << "\" will be ignored.\n\n");
+			_printf_("Warning -- Shape " << i << " of type \"" <<SHPTypeName( pstype[i] ) << "\" will be ignored.\n\n");
 		}
 	}
Index: /issm/trunk-jpl/src/c/modules/Shp2Kmlx/Shp2Kmlx.cpp
===================================================================
--- /issm/trunk-jpl/src/c/modules/Shp2Kmlx/Shp2Kmlx.cpp	(revision 15163)
+++ /issm/trunk-jpl/src/c/modules/Shp2Kmlx/Shp2Kmlx.cpp	(revision 15164)
@@ -6,4 +6,5 @@
 #include "../../shared/shared.h"
 #include "../../toolkits/toolkits.h"
+#include "../../kml/kmlobjects.h"
 
 int Shp2Kmlx(char* filshp,char* filkml,
Index: /issm/trunk-jpl/src/c/shared/String/ApiPrintf.cpp
===================================================================
--- /issm/trunk-jpl/src/c/shared/String/ApiPrintf.cpp	(revision 15163)
+++ /issm/trunk-jpl/src/c/shared/String/ApiPrintf.cpp	(revision 15164)
@@ -10,9 +10,6 @@
 
 #include <stdio.h>
-#include <string.h>
-#include <ctype.h>
 
-void ApiPrintf(char* format, const char* string){
-	printf(format,string);
-
+void ApiPrintf(const char* string){
+	printf(string);
 }
Index: /issm/trunk-jpl/src/c/shared/String/sharedstring.h
===================================================================
--- /issm/trunk-jpl/src/c/shared/String/sharedstring.h	(revision 15163)
+++ /issm/trunk-jpl/src/c/shared/String/sharedstring.h	(revision 15164)
@@ -12,5 +12,5 @@
 #endif
 
-void ApiPrintf(char* format,const char* string);
+void ApiPrintf(const char* string);
 
 #endif //ifndef _SHAREDSTRING_H_
Index: /issm/trunk-jpl/src/c/shared/io/Print/PrintfFunction.cpp
===================================================================
--- /issm/trunk-jpl/src/c/shared/io/Print/PrintfFunction.cpp	(revision 15163)
+++ /issm/trunk-jpl/src/c/shared/io/Print/PrintfFunction.cpp	(revision 15164)
@@ -30,5 +30,5 @@
 		__android_log_print(ANDROID_LOG_INFO, "Native",message.c_str());
 		#else
-		ApiPrintf("%s",message.c_str());
+		ApiPrintf(message.c_str());
 		#endif
 	}
@@ -40,5 +40,5 @@
 	__android_log_print(ANDROID_LOG_INFO, "Native",message.c_str());
 	#else
-	ApiPrintf("%s",message.c_str());
+	ApiPrintf(message.c_str());
 	#endif
 
