summaryrefslogtreecommitdiffstats
path: root/channels/location/client
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 01:25:37 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 01:25:37 +0000
commit3c206f96fd1e102a13b2971778060fef4be7afbc (patch)
tree26d54f12b25a491844130c7934c60d97c85807b7 /channels/location/client
parentReleasing progress-linux version 3.5.0+dfsg1-1~progress7.99u1. (diff)
downloadfreerdp3-3c206f96fd1e102a13b2971778060fef4be7afbc.tar.xz
freerdp3-3c206f96fd1e102a13b2971778060fef4be7afbc.zip
Merging upstream version 3.5.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'channels/location/client')
-rw-r--r--channels/location/client/location_main.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/channels/location/client/location_main.c b/channels/location/client/location_main.c
index 281070f..df6b82e 100644
--- a/channels/location/client/location_main.c
+++ b/channels/location/client/location_main.c
@@ -110,7 +110,7 @@ static UINT location_channel_send(IWTSVirtualChannel* channel, wStream* s)
static UINT location_send_client_ready_pdu(const LOCATION_CALLBACK* callback)
{
wStream sbuffer = { 0 };
- char buffer[32] = { 0 };
+ BYTE buffer[32] = { 0 };
wStream* s = Stream_StaticInit(&sbuffer, buffer, sizeof(buffer));
WINPR_ASSERT(s);
@@ -210,7 +210,7 @@ static UINT location_send_base_location3d(IWTSVirtualChannel* channel,
const RDPLOCATION_BASE_LOCATION3D_PDU* pdu)
{
wStream sbuffer = { 0 };
- char buffer[32] = { 0 };
+ BYTE buffer[32] = { 0 };
wStream* s = Stream_StaticInit(&sbuffer, buffer, sizeof(buffer));
WINPR_ASSERT(s);
WINPR_ASSERT(channel);
@@ -251,7 +251,7 @@ static UINT location_send_location2d_delta(IWTSVirtualChannel* channel,
const RDPLOCATION_LOCATION2D_DELTA_PDU* pdu)
{
wStream sbuffer = { 0 };
- char buffer[32] = { 0 };
+ BYTE buffer[32] = { 0 };
wStream* s = Stream_StaticInit(&sbuffer, buffer, sizeof(buffer));
WINPR_ASSERT(s);
@@ -287,7 +287,7 @@ static UINT location_send_location3d_delta(IWTSVirtualChannel* channel,
const RDPLOCATION_LOCATION3D_DELTA_PDU* pdu)
{
wStream sbuffer = { 0 };
- char buffer[32] = { 0 };
+ BYTE buffer[32] = { 0 };
wStream* s = Stream_StaticInit(&sbuffer, buffer, sizeof(buffer));
WINPR_ASSERT(s);