Skip to content
Snippets Groups Projects
Commit 8df575c5 authored by Brian Christiansen's avatar Brian Christiansen
Browse files

Fix uninitialized value

as reported when compiling with optimizations (-O2).
parent 950b9b59
No related branches found
No related tags found
No related merge requests found
...@@ -1423,6 +1423,7 @@ extern int node_features_p_node_set(char *active_features) ...@@ -1423,6 +1423,7 @@ extern int node_features_p_node_set(char *active_features)
key = "Memory"; key = "Memory";
break; break;
default: default:
key = NULL;
break; break;
} }
else if (strstr(active_features, "hybrid")) else if (strstr(active_features, "hybrid"))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment