From: englebass Date: Tue, 9 Feb 2010 21:04:56 +0000 (+0000) Subject: Make clang happy X-Git-Tag: 2.0_alpha~267 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f3a271a33e3e84657d76a2cf3a795694c3a5ad2a;p=framework%2Fuifw%2Femotion.git Make clang happy git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/emotion@46023 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/modules/gstreamer/emotion_gstreamer.c b/src/modules/gstreamer/emotion_gstreamer.c index 6500847..5ef24d2 100644 --- a/src/modules/gstreamer/emotion_gstreamer.c +++ b/src/modules/gstreamer/emotion_gstreamer.c @@ -918,14 +918,16 @@ em_video_channel_count(void *video) } static void -em_video_channel_set(void *video, - int channel) +em_video_channel_set(void *video __UNUSED__, + int channel __UNUSED__) { +#if 0 Emotion_Gstreamer_Video *ev; ev = (Emotion_Gstreamer_Video *)video; if (channel < 0) channel = 0; +#endif /* FIXME: a faire... */ } @@ -980,14 +982,16 @@ em_audio_channel_count(void *video) } static void -em_audio_channel_set(void *video, - int channel) +em_audio_channel_set(void *video __UNUSED__, + int channel __UNUSED__) { +#if 0 Emotion_Gstreamer_Video *ev; ev = (Emotion_Gstreamer_Video *)video; if (channel < -1) channel = -1; +#endif /* FIXME: a faire... */ }