#2011 Update libecl to 89f6c44aa0 to fix RFT file reading and missing dyn nnc handling

This commit is contained in:
Jacob Støren
2017-10-26 17:16:36 +02:00
parent cb78ad8c31
commit 04404c3b2c
45 changed files with 2021 additions and 387 deletions

View File

@@ -1122,6 +1122,14 @@ static int smspec_node_cmp_KEYWORD( const smspec_node_type * node1, const smspec
}
static int smspec_node_cmp_key1( const smspec_node_type * node1, const smspec_node_type * node2) {
if (!node1->gen_key1) {
if (!node2->gen_key1)
return 0;
else
return -1;
} else if (!node2->gen_key1) {
return 1;
}
return util_strcmp_int( node1->gen_key1 , node2->gen_key1 );
}