From 6a32252403781b303d4ebd195932ce39c5b1c08e Mon Sep 17 00:00:00 2001 From: Simon Rettberg Date: Tue, 30 Jul 2019 16:03:58 +0200 Subject: Update to 5.43 --- hacks/glx/glhanoi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'hacks/glx/glhanoi.c') diff --git a/hacks/glx/glhanoi.c b/hacks/glx/glhanoi.c index eaf775f..46cdc68 100644 --- a/hacks/glx/glhanoi.c +++ b/hacks/glx/glhanoi.c @@ -1296,7 +1296,7 @@ static void initData(glhcfg *glhanoi) glhanoi->pole[i].size = glhanoi->numberOfDisks; } checkAllocAndExit( - !!(glhanoi->diskPos = calloc(glhanoi->numberOfDisks, sizeof(double))), + !!(glhanoi->diskPos = calloc(glhanoi->numberOfDisks, sizeof(float))), "diskPos"); if (glhanoi->trailQSize) { @@ -1430,7 +1430,7 @@ static GLubyte *makeTexture(glhcfg *glhanoi, int x_size, int y_size, int z_size, double xi, yi, zi; if((textureData = - calloc(x_size * y_size * z_size, sizeof(GLuint))) == NULL) { + calloc(x_size * y_size * z_size, sizeof(GLubyte))) == NULL) { return NULL; } -- cgit v1.2.3-55-g7522