decoder: removed "volatile" modifier

The variable "next_song" is already protected by a memory barrier.
"total_time" is not important for synchronization, and we don't need
"volatile" here.
This commit is contained in:
Max Kellermann 2008-11-03 21:44:12 +01:00
parent 863badd91e
commit ec6d26788a
1 changed files with 2 additions and 2 deletions

View File

@ -55,8 +55,8 @@ struct decoder_control {
struct audio_format out_audio_format;
struct song *current_song;
struct song *volatile next_song;
volatile float total_time;
struct song *next_song;
float total_time;
};
extern struct decoder_control dc;