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:
parent
707cc1256f
commit
5c56c32d17
4 changed files with 9 additions and 6 deletions
|
@ -99,5 +99,5 @@ fsym(
|
|||
#endif
|
||||
#endif
|
||||
|
||||
return(NULL);
|
||||
return(0);
|
||||
}
|
||||
|
|
|
@ -742,7 +742,8 @@ int num_gr,
|
|||
FalGlyphRegion *gr,
|
||||
int code_no)
|
||||
{
|
||||
int code, rtn, msize, i, j, dspcode;
|
||||
int code, rtn, msize, i, j;
|
||||
long unsigned int dspcode;
|
||||
char *ptn;
|
||||
|
||||
if ( ( r_gpf->p_width != r_snf->bdf_width )
|
||||
|
|
|
@ -292,9 +292,11 @@ int main( int argc, char *argv[] )
|
|||
} else {
|
||||
fontname = (char *)0;
|
||||
Anafprop(
|
||||
fip, fpropPtr, fpropvnPtr,
|
||||
&fontname, &psprop, &resprop,
|
||||
&fplistPtr, &fplistNum
|
||||
fip, fpropPtr,
|
||||
fpropvnPtr, &fontname,
|
||||
&fplistPtr,
|
||||
&psprop, &resprop,
|
||||
&fplistNum
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
@ -63,7 +63,7 @@ mbinit(XPointer state)
|
|||
}
|
||||
|
||||
static char
|
||||
mbchar(XPointer state, char *str, char *lenp)
|
||||
mbchar(XPointer state, char *str, int *lenp)
|
||||
{
|
||||
XlcConv conv = ((State) state)->conv;
|
||||
XlcCharSet charset;
|
||||
|
|
Loading…
Reference in a new issue