fix a couple of warnings
authorVincent Torri <vincent.torri@gmail.com>
Thu, 17 May 2012 08:31:51 +0000 (08:31 +0000)
committerVincent Torri <vincent.torri@gmail.com>
Thu, 17 May 2012 08:31:51 +0000 (08:31 +0000)
SVN revision: 71192

legacy/evas/src/modules/engines/software_gdi/evas_outbuf.c

index 6841baa..b0ffdb3 100644 (file)
@@ -65,7 +65,7 @@ _unfind_gdiob(Gdi_Output_Buffer *gdiob)
    gdipool = eina_list_prepend(gdipool, gdiob);
    gdisize += gdiob->psize * (gdiob->depth >> 3);
    while ((gdisize > (gdimemlimit)) ||
-          (eina_list_count(gdipool) > gdicountlimit))
+          ((int)eina_list_count(gdipool) > gdicountlimit))
      {
         Eina_List *xl;
 
@@ -420,7 +420,7 @@ evas_software_gdi_outbuf_push_updated_region(Outbuf     *buf,
         RECT  rect;
         POINT pt = { 0, 0 };
         HRGN region;
-        int *tmp;
+        DATA32 *tmp;
         int i;
         int j;
         int ww;