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

Merge /u/jrubio/cdesktopenv/ branch incompatible-pointer-types into master

https://sourceforge.net/p/cdesktopenv/code/merge-requests/16/
This commit is contained in:
Jon Trulson 2019-10-12 21:43:45 +00:00
commit 34b5ee08c8
3 changed files with 8 additions and 5 deletions

View file

@ -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 )

View file

@ -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
);
}

View file

@ -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;