aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJ08nY2017-08-29 17:07:34 +0200
committerJ08nY2017-08-29 17:07:34 +0200
commitdad32a97eb61ddb4c9cbbb6b87d26de25f966b91 (patch)
tree65c00280cd1aeb57e64649167c245374108f91bf
parent3e9be5f5db1bccb5eb11d51cf615182eb394afb6 (diff)
downloadecgen-dad32a97eb61ddb4c9cbbb6b87d26de25f966b91.tar.gz
ecgen-dad32a97eb61ddb4c9cbbb6b87d26de25f966b91.tar.zst
ecgen-dad32a97eb61ddb4c9cbbb6b87d26de25f966b91.zip
-rw-r--r--src/exhaustive/exhaustive.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/exhaustive/exhaustive.c b/src/exhaustive/exhaustive.c
index 3f10b53..35c09d8 100644
--- a/src/exhaustive/exhaustive.c
+++ b/src/exhaustive/exhaustive.c
@@ -2,7 +2,6 @@
* ecgen, tool for generating Elliptic curve domain parameters
* Copyright (C) 2017 J08nY
*/
-#include <io/config.h>
#include "exhaustive.h"
#include "anomalous.h"
#include "gen/curve.h"
@@ -53,7 +52,8 @@ static void exhaustive_ginit(gen_t *generators, const config_t *cfg) {
case 1:
generators[OFFSET_A] = &a_gen_one;
break;
- default:break;
+ default:
+ break;
}
generators[OFFSET_B] = &b_gen_one;
}