aboutsummaryrefslogtreecommitdiff
path: root/src/decoder_thread.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-11-03 19:16:25 +0100
committerMax Kellermann <max@duempel.org>2009-11-03 19:16:25 +0100
commit59ffb5b7c126194f3cb74129837961ee849933fa (patch)
tree126bb328b1df5ce1c44c839ad3ca065921620a9f /src/decoder_thread.c
parent4dc25d3908648cc781fe43e54243bb64aec4b2cb (diff)
decoder_control: make the song objects const
They are just informational.
Diffstat (limited to 'src/decoder_thread.c')
-rw-r--r--src/decoder_thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decoder_thread.c b/src/decoder_thread.c
index 7308795c..2f643d45 100644
--- a/src/decoder_thread.c
+++ b/src/decoder_thread.c
@@ -263,7 +263,7 @@ decoder_run_song(struct decoder_control *dc,
static void
decoder_run(struct decoder_control *dc)
{
- struct song *song = dc->next_song;
+ const struct song *song = dc->next_song;
char *uri;
if (song_is_file(song))