summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiloslav Trmač <mitr@redhat.com>2010-11-25 23:46:03 +0100
committerMiloslav Trmač <mitr@redhat.com>2010-11-25 23:46:03 +0100
commite4392e2df40c8d89109630fa7cab951f6c8ab70d (patch)
tree7e74fb9f8cc410ec8855799bbe074848c6206dc6
parent6e919f9347656ba0ae390038679ac942ad6a9964 (diff)
downloadncrypto-e4392e2df40c8d89109630fa7cab951f6c8ab70d.tar.gz
ncrypto-e4392e2df40c8d89109630fa7cab951f6c8ab70d.tar.xz
ncrypto-e4392e2df40c8d89109630fa7cab951f6c8ab70d.zip
Beautify
-rw-r--r--lib/ncrypto_nss.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ncrypto_nss.c b/lib/ncrypto_nss.c
index 48d2e47..24e7e30 100644
--- a/lib/ncrypto_nss.c
+++ b/lib/ncrypto_nss.c
@@ -650,9 +650,9 @@ struct rsa_public_key
static const SEC_ASN1Template rsa_public_key_asn1_template[] =
{
{ SEC_ASN1_SEQUENCE, 0, NULL, sizeof (struct rsa_public_key) },
-#define INT(X) { \
- SEC_ASN1_INTEGER, offsetof (struct rsa_public_key, X), NULL, 0, \
- }
+#define INT(X) \
+ { SEC_ASN1_INTEGER, offsetof (struct rsa_public_key, X), NULL, 0, }
+
INT (modulus), INT (public_exponent),
#undef INT
{ 0, 0, NULL, 0 }