Skip to content

Commit 4a6f968

Browse files
committed
- don't return error for default case because then the API will fail.
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@10120 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
1 parent 8463e0a commit 4a6f968

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FMI/import/source/xmlparser.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -768,7 +768,7 @@ void freeElement(void* element){
768768
break;
769769
default:
770770
ERRORPRINT(" unknown AST node type of the Element in function: %s\n",__func__);
771-
exit(EXIT_FAILURE);
771+
//exit(EXIT_FAILURE);
772772
}
773773
// free the struct
774774
free(e);

0 commit comments

Comments
 (0)