diff libmpdemux/demux_ogg.c @ 19053:75327b24e06f

marks several string parameters as const, as they are not modified inside the function, Patch by Stefan Huehner, stefan AT huehner-org
author reynaldo
date Thu, 13 Jul 2006 05:03:43 +0000
parents a8e681ad7c90
children 08888397444e
line wrap: on
line diff
--- a/libmpdemux/demux_ogg.c	Thu Jul 13 03:05:08 2006 +0000
+++ b/libmpdemux/demux_ogg.c	Thu Jul 13 05:03:43 2006 +0000
@@ -441,7 +441,7 @@
 }
 
 // check if clang has substring from comma separated langlist
-static int demux_ogg_check_lang(char *clang, char *langlist)
+static int demux_ogg_check_lang(const char *clang, char *langlist)
 {
   char *c;