aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
}