diff options
author | Petri Hintukainen <phintuka@users.sourceforge.net> | 2011-12-16 00:03:41 +0200 |
---|---|---|
committer | Petri Hintukainen <phintuka@users.sourceforge.net> | 2011-12-16 00:03:41 +0200 |
commit | 752d2e3f572bf5c6fa6088c4e3966a35241d14de (patch) | |
tree | 548c378b00409821a2d69bab0ca1af87bed5ca03 | |
parent | 80223ca937303c9183e17b5c032bf4791ddbc96a (diff) | |
download | xine-lib-752d2e3f572bf5c6fa6088c4e3966a35241d14de.tar.gz xine-lib-752d2e3f572bf5c6fa6088c4e3966a35241d14de.tar.bz2 |
Added missing const
--HG--
branch : point-release
-rw-r--r-- | src/video_out/video_out_xcbxv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_out/video_out_xcbxv.c b/src/video_out/video_out_xcbxv.c index f1ff843dc..78bbc94e6 100644 --- a/src/video_out/video_out_xcbxv.c +++ b/src/video_out/video_out_xcbxv.c @@ -1011,7 +1011,7 @@ static int xv_gui_data_exchange (vo_driver_t *this_gen, return 0; } -static void xv_store_port_attribute(xv_driver_t *this, char *name) { +static void xv_store_port_attribute(xv_driver_t *this, const char * const name) { xcb_intern_atom_cookie_t atom_cookie; xcb_intern_atom_reply_t *atom_reply; |