From 37d77caa3c262c99ce3697224c1423e293d420ee Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 29 Aug 2008 14:48:39 +0200 Subject: const pointers Yet another patch which converts pointer arguments to "const". --- src/tag_id3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/tag_id3.c') diff --git a/src/tag_id3.c b/src/tag_id3.c index eb018f0c..42e2945d 100644 --- a/src/tag_id3.c +++ b/src/tag_id3.c @@ -338,7 +338,7 @@ static struct id3_tag *findId3TagFromEnd(FILE * stream) } #endif -struct tag *tag_id3_load(char *file) +struct tag *tag_id3_load(const char *file) { struct tag *ret = NULL; #ifdef HAVE_ID3TAG -- cgit v1.2.3