mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 04:13:28 +01:00
Remove needless parentheses
This commit is contained in:
parent
4715d81809
commit
d8c0c62c7b
@ -1637,7 +1637,7 @@ microdesc_has_curve25519_onion_key(const microdesc_t *md)
|
|||||||
int
|
int
|
||||||
node_has_curve25519_onion_key(const node_t *node)
|
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. */
|
/** Return the curve25519 key of <b>node</b>, or NULL if none. */
|
||||||
|
Loading…
Reference in New Issue
Block a user