Remove unnecessary parentheses from sizeof, apply sizeof to variables instead of...
[tinc] / src / node.c
index 99bbb6d..5ddd8f3 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();