summaryrefslogtreecommitdiff
path: root/src/common/crypto_ed25519.h
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2017-12-07 10:52:55 -0500
committerNick Mathewson <nickm@torproject.org>2017-12-08 14:47:19 -0500
commit17dcce3fe11bfea9c7c46d2b9fd5baeb63ebe1e2 (patch)
treef4aa0a4ea953572110a0862738a4a98d989fb2c7 /src/common/crypto_ed25519.h
parent285632a61b4e4aeec07b26004396473e0d8f4a43 (diff)
downloadtor-17dcce3fe11bfea9c7c46d2b9fd5baeb63ebe1e2.tar.gz
tor-17dcce3fe11bfea9c7c46d2b9fd5baeb63ebe1e2.zip
Fix wide lines introduced by previous patch.
Diffstat (limited to 'src/common/crypto_ed25519.h')
-rw-r--r--src/common/crypto_ed25519.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/crypto_ed25519.h b/src/common/crypto_ed25519.h
index c05f5dfa9e..74269ccffd 100644
--- a/src/common/crypto_ed25519.h
+++ b/src/common/crypto_ed25519.h
@@ -119,7 +119,8 @@ int ed25519_pubkey_read_from_file(ed25519_public_key_t *pubkey_out,
const char *filename);
void ed25519_keypair_free_(ed25519_keypair_t *kp);
-#define ed25519_keypair_free(kp) FREE_AND_NULL(ed25519_keypair_t, ed25519_keypair_free_, (kp))
+#define ed25519_keypair_free(kp) \
+ FREE_AND_NULL(ed25519_keypair_t, ed25519_keypair_free_, (kp))
int ed25519_pubkey_eq(const ed25519_public_key_t *key1,
const ed25519_public_key_t *key2);