From e4392e2df40c8d89109630fa7cab951f6c8ab70d Mon Sep 17 00:00:00 2001 From: Miloslav Trmač Date: Thu, 25 Nov 2010 23:46:03 +0100 Subject: Beautify --- lib/ncrypto_nss.c | 6 +++--- 1 file 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 } -- cgit