[core] fixed -Wenum-int-mismatch

This commit is contained in:
Armin Novak
2023-12-13 09:58:23 +01:00
committed by akallabeth
parent be660a91ca
commit 5638b5061c
2 changed files with 3 additions and 3 deletions

View File

@@ -127,8 +127,8 @@ typedef struct
} FASTPATH_UPDATE_HEADER;
FREERDP_LOCAL BOOL fastpath_read_header_rdp(rdpFastPath* fastpath, wStream* s, UINT16* length);
FREERDP_LOCAL int fastpath_recv_updates(rdpFastPath* fastpath, wStream* s);
FREERDP_LOCAL int fastpath_recv_inputs(rdpFastPath* fastpath, wStream* s);
FREERDP_LOCAL state_run_t fastpath_recv_updates(rdpFastPath* fastpath, wStream* s);
FREERDP_LOCAL state_run_t fastpath_recv_inputs(rdpFastPath* fastpath, wStream* s);
FREERDP_LOCAL BOOL fastpath_decrypt(rdpFastPath* fastpath, wStream* s, UINT16* length);

View File

@@ -836,7 +836,7 @@ fail:
* @return if the operation completed successfully
*/
int license_client_recv(rdpLicense* license, wStream* s)
state_run_t license_client_recv(rdpLicense* license, wStream* s)
{
BYTE flags;
BYTE bMsgType;