aboutsummaryrefslogtreecommitdiffstats
path: root/src/tag.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-08-29 14:48:39 +0200
committerMax Kellermann <max@duempel.org>2008-08-29 14:48:39 +0200
commit37d77caa3c262c99ce3697224c1423e293d420ee (patch)
treeff9cc102a1164024b71fe3e97b3c546a24078db3 /src/tag.c
parent5bd5551630c55344a11f99565d3c53acb32c0e44 (diff)
downloadmpd-37d77caa3c262c99ce3697224c1423e293d420ee.tar.gz
mpd-37d77caa3c262c99ce3697224c1423e293d420ee.tar.xz
mpd-37d77caa3c262c99ce3697224c1423e293d420ee.zip
const pointers
Yet another patch which converts pointer arguments to "const".
Diffstat (limited to 'src/tag.c')
-rw-r--r--src/tag.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tag.c b/src/tag.c
index f9dc767f2..1dffeef41 100644
--- a/src/tag.c
+++ b/src/tag.c
@@ -101,7 +101,7 @@ void tag_print_types(int fd)
}
}
-void tag_print(int fd, struct tag *tag)
+void tag_print(int fd, const struct tag *tag)
{
int i;
@@ -114,7 +114,7 @@ void tag_print(int fd, struct tag *tag)
}
}
-struct tag *tag_ape_load(char *file)
+struct tag *tag_ape_load(const char *file)
{
struct tag *ret = NULL;
FILE *fp;
@@ -303,7 +303,7 @@ void tag_free(struct tag *tag)
free(tag);
}
-struct tag *tag_dup(struct tag *tag)
+struct tag *tag_dup(const struct tag *tag)
{
struct tag *ret;
int i;
@@ -321,7 +321,7 @@ struct tag *tag_dup(struct tag *tag)
return ret;
}
-int tag_equal(struct tag *tag1, struct tag *tag2)
+int tag_equal(const struct tag *tag1, const struct tag *tag2)
{
int i;