fix gcc-2.95 compilation errors

git-svn-id: https://svn.musicpd.org/mpd/trunk@172 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
Warren Dukes
2004-03-03 00:01:43 +00:00
parent 4aec92fd6e
commit ac2be01374
3 changed files with 8 additions and 4 deletions

View File

@@ -402,17 +402,19 @@ float getPlayerCrossFade() {
}
void setPlayerCrossFade(float crossFadeInSeconds) {
PlayerControl * pc;
if(crossFadeInSeconds<0) crossFadeInSeconds = 0;
PlayerControl * pc = &(getPlayerData()->playerControl);
pc = &(getPlayerData()->playerControl);
pc->crossFade = crossFadeInSeconds;
}
void setPlayerSoftwareVolume(int volume) {
PlayerControl * pc;
volume = (volume>100) ? 100 : (volume<0 ? 0 : volume);
PlayerControl * pc = &(getPlayerData()->playerControl);
pc = &(getPlayerData()->playerControl);
pc->softwareVolume = volume;
}