From 0b82006733e2eba89c32ac4dfb35e6db49cfa992 Mon Sep 17 00:00:00 2001 From: Alexander Larsson Date: Fri, 18 Jun 2010 15:44:04 +0200 Subject: Make pointer types in messages be 64bit in memory Right now we always assume pointers are stored as SPICE_ADDRESS, i.e. 64bit, independent on the size sent on the network. This is required for 64bit architectures of course, but slightly overkill on 32bit architectures, so needs fixing when all SPICE_ADDRESS elements can be made internal. --- common/messages.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'common/messages.h') diff --git a/common/messages.h b/common/messages.h index cf9523e2..f6c2aebd 100644 --- a/common/messages.h +++ b/common/messages.h @@ -442,8 +442,8 @@ typedef struct SpiceMsgcTunnelAddGenericService { uint32_t id; uint32_t group; uint32_t port; - uint32_t name; - uint32_t description; + uint64_t name; + uint64_t description; } SpiceMsgcTunnelAddGenericService; typedef struct SpiceMsgcTunnelAddPrintService { -- cgit