- config file parser: fixed problem when compiling with visual

studio/C++
pull/269/head
Michael Zillgith 5 years ago
parent 34ae9ff77a
commit 05ae100169

@ -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