[MPlayer-cvslog] r33399 - trunk/libvo/vo_directfb2.c

reimar subversion at mplayerhq.hu
Sat May 7 20:44:30 CEST 2011


Author: reimar
Date: Sat May  7 20:44:29 2011
New Revision: 33399

Log:
Add "const" to avoid compiler warnings.

Modified:
   trunk/libvo/vo_directfb2.c

Modified: trunk/libvo/vo_directfb2.c
==============================================================================
--- trunk/libvo/vo_directfb2.c	Sat May  7 18:29:57 2011	(r33398)
+++ trunk/libvo/vo_directfb2.c	Sat May  7 20:44:29 2011	(r33399)
@@ -984,7 +984,7 @@ static void uninit(void)
 }
 
 
-static uint32_t directfb_set_video_eq(char *data, int value) //data==name
+static uint32_t directfb_set_video_eq(const char *data, int value) //data==name
 {
 
 	DFBColorAdjustment ca;
@@ -1042,7 +1042,7 @@ if (layer) {
 
 }
 
-static uint32_t directfb_get_video_eq(char *data, int *value) // data==name
+static uint32_t directfb_get_video_eq(const char *data, int *value) // data==name
 {
 
 	DFBColorAdjustment ca;


More information about the MPlayer-cvslog mailing list