[Spice-commits] common/quic.c

Frediano Ziglio fziglio at kemper.freedesktop.org
Mon Jun 13 17:39:33 UTC 2016


 common/quic.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d0139f824e50759059ae526e7d1bd9aaca34094a
Author: Frediano Ziglio <fziglio at redhat.com>
Date:   Mon Jun 13 12:31:38 2016 +0100

    Remove a warning compiling under Windows
    
    On Windows long is always 32 bit so under x64 the cast from pointer to
    "unsigned long" cause a warning.
    
    Signed-off-by: Frediano Ziglio <fziglio at redhat.com>
    Acked-by: Jonathon Jongsma <jjongsma at redhat.com>

diff --git a/common/quic.c b/common/quic.c
index f014a2a..5b00d65 100644
--- a/common/quic.c
+++ b/common/quic.c
@@ -1073,7 +1073,7 @@ static int init_encoder(Encoder *encoder, QuicUsrContext *usr)
 
 static int encoder_reste(Encoder *encoder, uint32_t *io_ptr, uint32_t *io_ptr_end)
 {
-    spice_assert(((unsigned long)io_ptr % 4) == ((unsigned long)io_ptr_end % 4));
+    spice_assert(((uintptr_t)io_ptr % 4) == ((uintptr_t)io_ptr_end % 4));
     spice_assert(io_ptr <= io_ptr_end);
 
     encoder->rgb_state.waitcnt = 0;


More information about the Spice-commits mailing list