]> Git Repo - linux.git/commitdiff
assoc_array: remove global variable
authorStephen Hemminger <[email protected]>
Thu, 23 Jan 2014 13:24:09 +0000 (13:24 +0000)
committerLinus Torvalds <[email protected]>
Thu, 23 Jan 2014 17:25:10 +0000 (09:25 -0800)
The associative array code creates unnecessary and potentially
problematic global variable 'status'.  Remove it since never used.

Signed-off-by: Stephen Hemminger <[email protected]>
Signed-off-by: David Howells <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
lib/assoc_array.c

index 1b6a44f1ec3e3b10f3b02d19f8ab0ce59453f6d5..c0b1007011e188836616509deef5876c207d32d4 100644 (file)
@@ -157,7 +157,7 @@ enum assoc_array_walk_status {
        assoc_array_walk_tree_empty,
        assoc_array_walk_found_terminal_node,
        assoc_array_walk_found_wrong_shortcut,
-} status;
+};
 
 struct assoc_array_walk_result {
        struct {
This page took 0.059478 seconds and 4 git commands to generate.