Fix all warnings when compiling with -Wall -W -pedantic.
[tinc] / src / node.c
index 12bc38f..03be21c 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;