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:
Hennadii Stepanov 2023-06-24 20:16:01 +01:00
parent 926dd3e962
commit 67887ae65c
No known key found for this signature in database
GPG Key ID: 410108112E7EA81F

View File

@ -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;
} }