emotion: fix symbol issue.
authorCedric BAIL <cedric.bail@free.fr>
Sat, 5 Nov 2011 15:54:34 +0000 (15:54 +0000)
committerCedric BAIL <cedric.bail@free.fr>
Sat, 5 Nov 2011 15:54:34 +0000 (15:54 +0000)
NOTE: all inline function in header should be static or
they will export symbol and you don't want that.

SVN revision: 64765

legacy/emotion/src/modules/generic/Emotion_Generic_Plugin.h

index ad67a32..4dd8473 100644 (file)
@@ -92,7 +92,7 @@ struct _Emotion_Generic_Video_Shared
    int frame_drop;
 };
 
-inline int
+static inline int
 emotion_generic_shm_get(const char *shmname, Emotion_Generic_Video_Shared **vs, Emotion_Generic_Video_Frame *vf)
 {
    int shmfd = -1;
@@ -133,7 +133,7 @@ emotion_generic_shm_get(const char *shmname, Emotion_Generic_Video_Shared **vs,
    return 1;
 }
 
-inline void
+static inline void
 emotion_generic_shm_free(Emotion_Generic_Video_Shared *vs)
 {
    munmap(vs, vs->size);