mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-14 00:14:11 +09:00
[mingw] fix type incompatibilities
The integer types with MINGW do not always match. Ensure the correct 32bit interger base type is used when passing pointers
This commit is contained in:
@@ -2469,8 +2469,8 @@ static int parse_codec_cache_options(rdpSettings* settings, const COMMAND_LINE_A
|
||||
|
||||
static BOOL check_kbd_remap_valid(const char* token)
|
||||
{
|
||||
DWORD key = 0;
|
||||
DWORD value = 0;
|
||||
UINT32 key = 0;
|
||||
UINT32 value = 0;
|
||||
|
||||
WINPR_ASSERT(token);
|
||||
/* The remapping is only allowed for scancodes, so maximum is 999=999 */
|
||||
|
||||
Reference in New Issue
Block a user