- config file parser: fixed problem when compiling with visual

studio/C++
pull/265/head
Michael Zillgith 5 years ago
parent 2bc47a6a6c
commit a17e9603e0

@ -434,7 +434,7 @@ ConfigFileParser_createModelFromConfigFile(FileHandle fileHandle)
}
}
else if (StringUtils_startsWith((char*) lineBuffer, "DE")) {
char* start = strchr(lineBuffer, '(');
char* start = strchr((char*) lineBuffer, '(');
if (start) {
start++;

Loading…
Cancel
Save