po->depth = depth;
po->clipdepth = clipdepth;
po->ratio = ratio;
- po->name = name;
+ po->name = (unsigned char*)name;
po->move = move;
if(clipdepth) po->clipdepth = clipdepth;
if(matrix) po->matrix = matrix_getMatrix(matrix);
if(!PyArg_ParseTuple(args, "s", &filename))
return NULL;
- writePNG(filename, fi->rgba ,fi->width, fi->height);
+ writePNG(filename, (unsigned char*)fi->rgba ,fi->width, fi->height);
return PY_NONE;
}