changeset 33312:fdfabd2d4476

Add "const" to avoid compiler warnings.
author reimar
date Sat, 07 May 2011 18:44:29 +0000
parents 00ab9ef28181
children 169a40da4c53
files libvo/vo_directfb2.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/libvo/vo_directfb2.c	Sat May 07 16:29:57 2011 +0000
+++ b/libvo/vo_directfb2.c	Sat May 07 18:44:29 2011 +0000
@@ -984,7 +984,7 @@
 }
 
 
-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 @@
 
 }
 
-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;