Pārlūkot izejas kodu

Remove needless parentheses

Nick Mathewson 6 gadi atpakaļ
vecāks
revīzija
d8c0c62c7b
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      src/or/nodelist.c

+ 1 - 1
src/or/nodelist.c

@@ -1637,7 +1637,7 @@ microdesc_has_curve25519_onion_key(const microdesc_t *md)
 int
 node_has_curve25519_onion_key(const node_t *node)
 {
-  return(node_get_curve25519_onion_key(node)!=NULL);
+  return node_get_curve25519_onion_key(node) != NULL;
 }
 
 /** Return the curve25519 key of <b>node</b>, or NULL if none. */