Changeset 15164
- Timestamp:
- 05/30/13 10:25:52 (12 years ago)
- Location:
- issm/trunk-jpl/src/c
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/modules/Shp2Expx/Shp2Expx.cpp
r15104 r15164 6 6 #include "../../shared/shared.h" 7 7 #include "../../toolkits/toolkits.h" 8 #include "../../kml/kmlobjects.h" 8 9 9 10 int Shp2Expx(char* filshp,char* filexp){ … … 562 563 563 564 else { 564 _printf_( ,"Warning -- Shape " << i << " of type \"" <<SHPTypeName( pstype[i] ) << "\" will be ignored.\n\n");565 _printf_("Warning -- Shape " << i << " of type \"" <<SHPTypeName( pstype[i] ) << "\" will be ignored.\n\n"); 565 566 } 566 567 } -
issm/trunk-jpl/src/c/modules/Shp2Kmlx/Shp2Kmlx.cpp
r15104 r15164 6 6 #include "../../shared/shared.h" 7 7 #include "../../toolkits/toolkits.h" 8 #include "../../kml/kmlobjects.h" 8 9 9 10 int Shp2Kmlx(char* filshp,char* filkml, -
issm/trunk-jpl/src/c/shared/String/ApiPrintf.cpp
r15091 r15164 10 10 11 11 #include <stdio.h> 12 #include <string.h>13 #include <ctype.h>14 12 15 void ApiPrintf(char* format, const char* string){ 16 printf(format,string); 17 13 void ApiPrintf(const char* string){ 14 printf(string); 18 15 } -
issm/trunk-jpl/src/c/shared/String/sharedstring.h
r15091 r15164 12 12 #endif 13 13 14 void ApiPrintf(c har* format,const char* string);14 void ApiPrintf(const char* string); 15 15 16 16 #endif //ifndef _SHAREDSTRING_H_ -
issm/trunk-jpl/src/c/shared/io/Print/PrintfFunction.cpp
r15099 r15164 30 30 __android_log_print(ANDROID_LOG_INFO, "Native",message.c_str()); 31 31 #else 32 ApiPrintf( "%s",message.c_str());32 ApiPrintf(message.c_str()); 33 33 #endif 34 34 } … … 40 40 __android_log_print(ANDROID_LOG_INFO, "Native",message.c_str()); 41 41 #else 42 ApiPrintf( "%s",message.c_str());42 ApiPrintf(message.c_str()); 43 43 #endif 44 44
Note:
See TracChangeset
for help on using the changeset viewer.