Emotion: Fix signed warnings
authorenglebass <englebass>
Sat, 3 Sep 2011 21:09:28 +0000 (21:09 +0000)
committerenglebass <englebass@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sat, 3 Sep 2011 21:09:28 +0000 (21:09 +0000)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/emotion@63135 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/modules/generic/Emotion_Generic_Plugin.h
src/modules/generic/emotion_generic.c

index b85f647..a43ebd3 100644 (file)
@@ -98,9 +98,9 @@ emotion_generic_shm_get(const char *shmname, Emotion_Generic_Video_Shared **vs,
    munmap(t_vs, sizeof(*t_vs));
    t_vs = mmap(NULL, size, PROT_READ|PROT_WRITE, MAP_SHARED, shmfd, 0);
 
-   vf->frames[0] = (char *)t_vs + sizeof(*t_vs);
-   vf->frames[1] = (char *)t_vs + sizeof(*t_vs) + t_vs->height * t_vs->width * t_vs->pitch;
-   vf->frames[2] = (char *)t_vs + sizeof(*t_vs) + 2 * t_vs->height * t_vs->width * t_vs->pitch;
+   vf->frames[0] = (unsigned char *)t_vs + sizeof(*t_vs);
+   vf->frames[1] = (unsigned char *)t_vs + sizeof(*t_vs) + t_vs->height * t_vs->width * t_vs->pitch;
+   vf->frames[2] = (unsigned char *)t_vs + sizeof(*t_vs) + 2 * t_vs->height * t_vs->width * t_vs->pitch;
 
    *vs = t_vs;
 }
index 920869c..010dec1 100644 (file)
@@ -170,9 +170,9 @@ _create_shm_data(Emotion_Generic_Video *ev, const char *shmname)
    vs->frame.last = 2;
    vs->frame.next = 2;
    sem_init(&vs->lock, 1, 1);
-   ev->frame.frames[0] = (char *)vs + sizeof(*vs);
-   ev->frame.frames[1] = (char *)vs + sizeof(*vs) + vs->height * vs->width * vs->pitch;
-   ev->frame.frames[2] = (char *)vs + sizeof(*vs) + 2 * vs->height * vs->width * vs->pitch;
+   ev->frame.frames[0] = (unsigned char *)vs + sizeof(*vs);
+   ev->frame.frames[1] = (unsigned char *)vs + sizeof(*vs) + vs->height * vs->width * vs->pitch;
+   ev->frame.frames[2] = (unsigned char *)vs + sizeof(*vs) + 2 * vs->height * vs->width * vs->pitch;
 
    if (ev->shared)
      munmap(ev->shared, ev->shared->size);