]> tinc-vpn.org Git - tinc/blobdiff - src/node.c
Remove unnecessary parentheses from sizeof, apply sizeof to variables instead of...
[tinc] / src / node.c
index 99bbb6db1cf200bca7f940b033e20a6948d4d718..5ddd8f36d41ce816c18935ced754e1894f216beb 100644 (file)
@@ -67,7 +67,7 @@ void exit_nodes(void) {
 }
 
 node_t *new_node(void) {
-       node_t *n = xmalloc_and_zero(sizeof(*n));
+       node_t *n = xmalloc_and_zero(sizeof *n);
 
        cp();