From a6dacfdc78df0c078d824c312b2926235cddce16 Mon Sep 17 00:00:00 2001 From: erikd Date: Mon, 20 Aug 2007 10:03:18 +0000 Subject: [PATCH] Make _v_writestring const correct. svn path=/trunk/vorbis/; revision=13576 --- lib/info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/info.c b/lib/info.c index 8bbeb28..5ef62b6 100644 --- a/lib/info.c +++ b/lib/info.c @@ -42,7 +42,7 @@ static int ilog2(unsigned int v){ return(ret); } -static void _v_writestring(oggpack_buffer *o,char *s, int bytes){ +static void _v_writestring(oggpack_buffer *o,const char *s, int bytes){ while(bytes--){ oggpack_write(o,*s++,8); -- 2.7.4