Compiler warning fixed.

This commit is contained in:
Tobias Brunner 2010-06-24 16:23:54 +02:00
parent b3f65304ba
commit 6f52d3b077
1 changed files with 3 additions and 1 deletions

View File

@ -283,7 +283,9 @@ updown_listener_t *updown_listener_create()
INIT(this,
.public = {
.listener.child_updown = _child_updown,
.listener = {
.child_updown = _child_updown,
},
.destroy = _destroy,
},
.iface_cache = linked_list_create(),