aboutsummaryrefslogtreecommitdiff
path: root/src/tag_id3.h
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_id3.h
parent5bd5551630c55344a11f99565d3c53acb32c0e44 (diff)
const pointers
Yet another patch which converts pointer arguments to "const".
Diffstat (limited to 'src/tag_id3.h')
-rw-r--r--src/tag_id3.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tag_id3.h b/src/tag_id3.h
index 4701502f..807dbfb3 100644
--- a/src/tag_id3.h
+++ b/src/tag_id3.h
@@ -28,6 +28,6 @@ struct id3_tag;
struct tag *tag_id3_import(struct id3_tag *);
#endif
-struct tag *tag_id3_load(char *file);
+struct tag *tag_id3_load(const char *file);
#endif