CID 1515 : Wrong pointer type.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38137 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -135,7 +135,7 @@ retry:
|
|||||||
errorString = volumeWhich ? "Soundcard control unknown"
|
errorString = volumeWhich ? "Soundcard control unknown"
|
||||||
: "Mixer control unknown";
|
: "Mixer control unknown";
|
||||||
} else {
|
} else {
|
||||||
fMixerParameter = dynamic_cast<BContinuousParameter*>(p);
|
fMixerParameter = static_cast<BContinuousParameter*>(p);
|
||||||
fMin = fMixerParameter->MinValue();
|
fMin = fMixerParameter->MinValue();
|
||||||
fMax = fMixerParameter->MaxValue();
|
fMax = fMixerParameter->MaxValue();
|
||||||
fStep = fMixerParameter->ValueStep();
|
fStep = fMixerParameter->ValueStep();
|
||||||
|
|||||||
Reference in New Issue
Block a user