- Timestamp:
- May 30, 2013 12:20:38 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/webservice/split-soapC.cpp
r46326 r46327 140 140 141 141 /* process nesting depth information */ 142 if (!strncmp(pLine, RT_STR_TUPLE("#if")))142 if (!strncmp(pLine, "#if", 3)) 143 143 cIfNesting++; 144 else if (!strncmp(pLine, RT_STR_TUPLE("#endif")))144 else if (!strncmp(pLine, "#endif", 6)) 145 145 { 146 146 cIfNesting--; … … 164 164 165 165 /* look for static variables used for enum conversion. */ 166 if (!strncmp(pLine, RT_STR_TUPLE("static const struct soap_code_map")))166 if (!strncmp(pLine, "static const struct soap_code_map", sizeof("static const struct soap_code_map") - 1)) 167 167 cLinesSinceStaticMap = 0; 168 168 else
Note:
See TracChangeset
for help on using the changeset viewer.