From 25c04403bd13ee35883eb242a13c83fbc7071a98 Mon Sep 17 00:00:00 2001 From: Alexander Larsson Date: Fri, 18 Jun 2010 15:44:04 +0200 Subject: [PATCH] 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. --- messages.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/messages.h b/messages.h index cf9523e..f6c2aeb 100644 --- a/messages.h +++ b/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 {