Fix a typo in the error message
The code has been copy-pasted from the `precompute_ecmult_gen.c` source file.
This commit is contained in:
parent
926dd3e962
commit
67887ae65c
@ -56,11 +56,12 @@ static void print_two_tables(FILE *fp, int window_g) {
|
|||||||
int main(void) {
|
int main(void) {
|
||||||
/* Always compute all tables for window sizes up to 15. */
|
/* Always compute all tables for window sizes up to 15. */
|
||||||
int window_g = (ECMULT_WINDOW_SIZE < 15) ? 15 : ECMULT_WINDOW_SIZE;
|
int window_g = (ECMULT_WINDOW_SIZE < 15) ? 15 : ECMULT_WINDOW_SIZE;
|
||||||
|
const char outfile[] = "src/precomputed_ecmult.c";
|
||||||
FILE* fp;
|
FILE* fp;
|
||||||
|
|
||||||
fp = fopen("src/precomputed_ecmult.c","w");
|
fp = fopen(outfile, "w");
|
||||||
if (fp == NULL) {
|
if (fp == NULL) {
|
||||||
fprintf(stderr, "Could not open src/precomputed_ecmult.h for writing!\n");
|
fprintf(stderr, "Could not open %s for writing!\n", outfile);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user