1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-02-15 04:32:24 +00:00

Fixes for a few -Wincompatible-pointer-types

This commit is contained in:
Jose Rubio 2019-10-12 22:29:44 +02:00
parent 707cc1256f
commit 5c56c32d17
4 changed files with 9 additions and 6 deletions

View file

@ -99,5 +99,5 @@ fsym(
#endif #endif
#endif #endif
return(NULL); return(0);
} }

View file

@ -742,7 +742,8 @@ int num_gr,
FalGlyphRegion *gr, FalGlyphRegion *gr,
int code_no) int code_no)
{ {
int code, rtn, msize, i, j, dspcode; int code, rtn, msize, i, j;
long unsigned int dspcode;
char *ptn; char *ptn;
if ( ( r_gpf->p_width != r_snf->bdf_width ) if ( ( r_gpf->p_width != r_snf->bdf_width )

View file

@ -292,9 +292,11 @@ int main( int argc, char *argv[] )
} else { } else {
fontname = (char *)0; fontname = (char *)0;
Anafprop( Anafprop(
fip, fpropPtr, fpropvnPtr, fip, fpropPtr,
&fontname, &psprop, &resprop, fpropvnPtr, &fontname,
&fplistPtr, &fplistNum &fplistPtr,
&psprop, &resprop,
&fplistNum
); );
} }

View file

@ -63,7 +63,7 @@ mbinit(XPointer state)
} }
static char static char
mbchar(XPointer state, char *str, char *lenp) mbchar(XPointer state, char *str, int *lenp)
{ {
XlcConv conv = ((State) state)->conv; XlcConv conv = ((State) state)->conv;
XlcCharSet charset; XlcCharSet charset;