fix compiler warnings in Xprint/ps/PsArea.c
This commit is contained in:
parent
92303d534a
commit
ee2bb4d192
|
@ -427,6 +427,9 @@ extern void PsSetSpans(DrawablePtr pDrawable, GCPtr pGC, char *pSrc,
|
|||
extern void PsPutScaledImage(DrawablePtr pDrawable, GCPtr pGC, int depth,
|
||||
int x, int y, int w, int h, int leftPad, int format,
|
||||
int imageRes, char *pImage);
|
||||
extern void PsPutScaledImageIM(DrawablePtr pDrawable, GCPtr pGC, int depth,
|
||||
int x, int y, int w, int h, int leftPad,
|
||||
int format, int imageRes, char *pImage);
|
||||
extern void PsPutImage(DrawablePtr pDrawable, GCPtr pGC, int depth,
|
||||
int x, int y, int w, int h, int leftPad, int format,
|
||||
char *pImage);
|
||||
|
|
|
@ -118,7 +118,6 @@ PsPutScaledImage(DrawablePtr pDrawable, GCPtr pGC, int depth, int x, int y,
|
|||
{
|
||||
int i, j;
|
||||
int r, c;
|
||||
char *pt;
|
||||
PsOutPtr psOut;
|
||||
ColormapPtr cMap;
|
||||
int pageRes, sw, sh;
|
||||
|
@ -230,7 +229,6 @@ PsPutScaledImageIM(DrawablePtr pDrawable, GCPtr pGC, int depth, int x, int y,
|
|||
{
|
||||
int i, j;
|
||||
int r, c;
|
||||
char *pt;
|
||||
PsOutPtr psOut;
|
||||
ColormapPtr cMap;
|
||||
int pageRes, sw, sh;
|
||||
|
|
Loading…
Reference in New Issue