[Spice-devel] [PATCH] fix typo in big endian code path

Alon Levy alevy at redhat.com
Wed Jul 27 08:34:00 PDT 2011


On Wed, Jul 27, 2011 at 05:09:27PM +0200, Christophe Fergeau wrote:
> uint63_t should be uint64_t

ACK.

> ---
>  common/marshaller.c |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/common/marshaller.c b/common/marshaller.c
> index 97c65af..242d037 100644
> --- a/common/marshaller.c
> +++ b/common/marshaller.c
> @@ -31,8 +31,8 @@
>  #define write_uint16(ptr,v) (*((uint16_t)(ptr)) = SPICE_BYTESWAP16((uint16_t)(v)))
>  #define write_int32(ptr,v) (*((int32_t)(ptr)) = SPICE_BYTESWAP32((uint32_t)(v)))
>  #define write_uint32(ptr,v) (*((uint32_t)(ptr)) = SPICE_BYTESWAP32((uint32_t)(v)))
> -#define write_int64(ptr,v) (*((int64_t)(ptr)) = SPICE_BYTESWAP64((uint63_t)(v)))
> -#define write_uint64(ptr,v) (*((uint64_t)(ptr)) = SPICE_BYTESWAP64((uint63_t)(v)))
> +#define write_int64(ptr,v) (*((int64_t)(ptr)) = SPICE_BYTESWAP64((uint64_t)(v)))
> +#define write_uint64(ptr,v) (*((uint64_t)(ptr)) = SPICE_BYTESWAP64((uint64_t)(v)))
>  #else
>  #define write_int8(ptr,v) (*((int8_t *)(ptr)) = v)
>  #define write_uint8(ptr,v) (*((uint8_t *)(ptr)) = v)
> -- 
> 1.7.6
> 
> _______________________________________________
> Spice-devel mailing list
> Spice-devel at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/spice-devel


More information about the Spice-devel mailing list