mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Sync to Wine-20050930:
Alexandre Julliard <julliard@winehq.org> - Avoid some warnings on 64-bit platforms. svn path=/trunk/; revision=18321
This commit is contained in:
parent
a9fba037ec
commit
3ccfb20218
1 changed files with 2 additions and 2 deletions
|
@ -156,7 +156,7 @@ static const union cptable * const cptables[60] =
|
|||
|
||||
static int cmp_codepage( const void *codepage, const void *entry )
|
||||
{
|
||||
return (unsigned int)codepage - (*(const union cptable *const *)entry)->info.codepage;
|
||||
return *(unsigned int *)codepage - (*(const union cptable *const *)entry)->info.codepage;
|
||||
}
|
||||
|
||||
|
||||
|
@ -165,7 +165,7 @@ const union cptable *wine_cp_get_table( unsigned int codepage )
|
|||
{
|
||||
const union cptable **res;
|
||||
|
||||
if (!(res = bsearch( (void *)codepage, cptables, NB_CODEPAGES,
|
||||
if (!(res = bsearch( &codepage, cptables, NB_CODEPAGES,
|
||||
sizeof(cptables[0]), cmp_codepage ))) return NULL;
|
||||
return *res;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue