Skip to content

Commit

Permalink
Remove useless self assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Preisler committed May 18, 2018
1 parent de6232c commit ae550f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/OVAL/results/oval_resultCriteriaNode.c
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ void oval_result_criteria_node_set_extends(struct oval_result_criteria_node *nod
__attribute__nonnull__(node);
/*type==NODETYPE_EXTENDDEF */
if (oval_result_criteria_node_get_type(node) == OVAL_NODETYPE_EXTENDDEF) {
extends = ((struct oval_result_criteria_node_EXTENDDEF *)node)->extends = extends;
((struct oval_result_criteria_node_EXTENDDEF *)node)->extends = extends;
}
}

Expand Down

0 comments on commit ae550f3

Please sign in to comment.