pike.git/
src/
modules/
Image/
encodings/
xcf.c
Branch:
Tag:
Non-build tags
All tags
No tags
2014-05-26
2014-05-26 15:31:21 by Per Hedbor <ph@opera.com>
13b5ed48802d23941e575558d09bcd3eb61bee2a (
7
lines) (+
4
/-
3
)
[
Show
|
Annotate
]
Branch:
8.0
Removed a few casts
1184:
&io, &ao, &tiles, &rle, &bpp, &cmapo, &shrink, &rxs, &rys);
-
if( !(i =
(struct image *)
get_storage( io, image_program )))
+
if( !(i = get_storage( io, image_program )))
Pike_error("Wrong type object argument 1 (image)\n");
-
if(ao && !(a =
(struct image *)
get_storage( ao, image_program )))
+
if(ao && !(a = get_storage( ao, image_program )))
Pike_error("Wrong type object argument 2 (image)\n"); if( cmapo &&
-
!(cmap=
(struct neo_colortable *)
get_storage(cmapo,
+
!(cmap=get_storage(cmapo,
image_colortable_program))) Pike_error("Wrong type object argument 4 (colortable)\n");