summaryrefslogtreecommitdiff
path: root/src/fortune/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fortune/main.c')
-rw-r--r--src/fortune/main.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/fortune/main.c b/src/fortune/main.c
index a1a4372..b6b4476 100644
--- a/src/fortune/main.c
+++ b/src/fortune/main.c
@@ -86,7 +86,7 @@ intptr_t *run_voronoi(unsigned int num, double *lattice, bool periodic, double x
plot = 0;
debug = 0;
- alloclist = (char **)malloc(9 * num * sizeof(char *));
+ alloclist = (void **)malloc(9 * num * sizeof(void *));
allocnum = 0;
freeinit(&sfl, sizeof *sites);
@@ -160,7 +160,6 @@ intptr_t *run_voronoi(unsigned int num, double *lattice, bool periodic, double x
unsigned int real_vert_count = vert_count;
unsigned int real_edge_count = edge_count;
- unsigned int real_dual_count = dual_count;
double *real_vert_list = vert_list;
unsigned int *real_edge_list = edge_list;
unsigned int *real_dual_list = dual_list;
@@ -168,7 +167,6 @@ intptr_t *run_voronoi(unsigned int num, double *lattice, bool periodic, double x
if (periodic) {
real_vert_count = 0;
real_edge_count = 0;
- real_dual_count = 0;
real_vert_list = (double *)malloc(2 * vert_count * sizeof(double));
real_edge_list = (unsigned int *)malloc(2 * edge_count * sizeof(unsigned int));
real_dual_list = (unsigned int *)malloc(3 * dual_count * sizeof(unsigned int));