Commit 59534b92 authored by Max Kellermann's avatar Max Kellermann

cue_tag: pass "const" string to cue_tag_string()

parent 41a48b14
......@@ -193,7 +193,7 @@ cue_tag_file(FILE *fp, unsigned tnum)
}
struct tag *
cue_tag_string(char *str, unsigned tnum)
cue_tag_string(const char *str, unsigned tnum)
{
struct Cd *cd;
struct tag *cd_tag, *track_tag;
......
......@@ -13,7 +13,7 @@ struct tag *
cue_tag_file(FILE *file, unsigned tnum);
struct tag *
cue_tag_string(char *str, unsigned tnum);
cue_tag_string(const char *str, unsigned tnum);
#endif /* libcue */
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment