From 9cdb05bc22feb6693b4cfd42312a376e2544f6a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?= <grubba@grubba.org> Date: Tue, 11 Nov 1997 05:03:09 +0100 Subject: [PATCH] Added some missing casts. Rev: src/modules/Image/image.c:1.60 --- src/modules/Image/image.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/modules/Image/image.c b/src/modules/Image/image.c index 93344852c8..ca46ae58c9 100644 --- a/src/modules/Image/image.c +++ b/src/modules/Image/image.c @@ -1,9 +1,9 @@ -/* $Id: image.c,v 1.59 1997/11/10 14:19:54 mirar Exp $ */ +/* $Id: image.c,v 1.60 1997/11/11 04:03:09 grubba Exp $ */ /* **! module Image **! note -**! $Id: image.c,v 1.59 1997/11/10 14:19:54 mirar Exp $ +**! $Id: image.c,v 1.60 1997/11/11 04:03:09 grubba Exp $ **! class image **! **! The main object of the <ref>Image</ref> module, this object @@ -82,7 +82,7 @@ #include "stralloc.h" #include "global.h" -RCSID("$Id: image.c,v 1.59 1997/11/10 14:19:54 mirar Exp $"); +RCSID("$Id: image.c,v 1.60 1997/11/11 04:03:09 grubba Exp $"); #include "pike_macros.h" #include "object.h" #include "constants.h" @@ -2453,7 +2453,7 @@ void _image_map_compat(INT32 args,int fs) /* compat function */ nct=(struct neo_colortable*)get_storage(co,image_colortable_program); if (fs) image_colortable_internal_floyd_steinberg( - get_storage(co,image_colortable_program)); + (struct neo_colortable *)get_storage(co,image_colortable_program)); push_int(this->xsize); push_int(this->ysize); -- GitLab