Description: Address a compilation warning due to missing typecast
Author: Serge Hallyn <serge.hallyn@ubuntu.com>
Forwarded: yes

Index: spice/spice-common/common/lz_compress_tmpl.c
===================================================================
--- spice.orig/spice-common/common/lz_compress_tmpl.c	2013-02-01 16:27:43.000000000 -0600
+++ spice/spice-common/common/lz_compress_tmpl.c	2013-02-01 16:34:55.205042276 -0600
@@ -483,7 +483,7 @@
 
     // fetch the first image segment that is not too small
     while (cur_seg && ((((PIXEL *)cur_seg->lines_end) - ((PIXEL *)cur_seg->lines)) < 4)) {
-        ip_start = cur_seg->lines;
+        ip_start = (PIXEL *)cur_seg->lines;
         // coping the segment
         if (cur_seg->lines != cur_seg->lines_end) {
             ip = (PIXEL *)cur_seg->lines;
