diff options
author | Max Kellermann <max@duempel.org> | 2008-08-29 14:48:39 +0200 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2008-09-02 00:20:22 -0700 |
commit | b8eca08893a5738d732355cd581bcfc26c4812ea (patch) | |
tree | 0e64fec62c35aeab073490dbe6f816b14396cafb /src/tag_id3.c | |
parent | 7f04d26b6fcfe8c7fcc23c5accddda02ea36c507 (diff) | |
download | mpd-b8eca08893a5738d732355cd581bcfc26c4812ea.tar.gz mpd-b8eca08893a5738d732355cd581bcfc26c4812ea.tar.xz mpd-b8eca08893a5738d732355cd581bcfc26c4812ea.zip |
const pointers
Yet another patch which converts pointer arguments to "const".
Diffstat (limited to 'src/tag_id3.c')
-rw-r--r-- | src/tag_id3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tag_id3.c b/src/tag_id3.c index 5a51b5581..83b78150a 100644 --- a/src/tag_id3.c +++ b/src/tag_id3.c @@ -338,7 +338,7 @@ static struct id3_tag *findId3TagFromEnd(FILE * stream) } #endif -struct mpd_tag *tag_id3_load(char *file) +struct mpd_tag *tag_id3_load(const char *file) { struct mpd_tag *ret = NULL; #ifdef HAVE_ID3TAG |