Commit 9d6bae4b authored by Art Haas's avatar Art Haas Committed by Linus Torvalds

[PATCH] C99 initializer for net/ipv4/inetpeer.c

parent 3a02b3c9
......@@ -75,9 +75,9 @@ static kmem_cache_t *peer_cachep;
#define node_height(x) x->avl_height
static struct inet_peer peer_fake_node = {
avl_left : &peer_fake_node,
avl_right : &peer_fake_node,
avl_height : 0
.avl_left = &peer_fake_node,
.avl_right = &peer_fake_node,
.avl_height = 0
};
#define peer_avl_empty (&peer_fake_node)
static struct inet_peer *peer_root = peer_avl_empty;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment