Fix all warnings when compiling with -Wall -W -pedantic.
[oweals/tinc.git] / src / node.c
index 12bc38f7516ba9482b165acd0eedaafd6fb98c03..03be21cdb9b291b1f16aa15ace6ce8e1fe2d3b32 100644 (file)
@@ -140,7 +140,7 @@ void node_del(node_t *n) {
 }
 
 node_t *lookup_node(char *name) {
-       node_t n = {};
+       node_t n = {0};
 
        n.name = name;
 
@@ -148,7 +148,7 @@ node_t *lookup_node(char *name) {
 }
 
 node_t *lookup_node_udp(const sockaddr_t *sa) {
-       node_t n = {};
+       node_t n = {0};
 
        n.address = *sa;
        n.name = NULL;