mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[11:21] EmanueleAliberti: Usurp: drivers/dd/beep/bbep.c:178: only one DPRINT was #if 0'ed
[11:22] Usurp: EmanueleAliberti: its a 2 line change [11:22] Usurp: <Usurp> - pbsp->Frequency, [11:22] Usurp: <Usurp> - pbsp->Duration); [11:22] Usurp: <Usurp> + BeepParam->Frequency, [11:22] Usurp: <Usurp> + BeepParam->Duration); svn path=/trunk/; revision=16851
This commit is contained in:
parent
ddb24faedc
commit
3bf350101f
1 changed files with 2 additions and 3 deletions
|
@ -177,9 +177,8 @@ BeepDeviceControl(PDEVICE_OBJECT DeviceObject,
|
||||||
|
|
||||||
/* do the beep!! */
|
/* do the beep!! */
|
||||||
DPRINT("Beep:\n Freq: %lu Hz\n Dur: %lu ms\n",
|
DPRINT("Beep:\n Freq: %lu Hz\n Dur: %lu ms\n",
|
||||||
pbsp->Frequency,
|
BeepParam->Frequency,
|
||||||
pbsp->Duration);
|
BeepParam->Duration);
|
||||||
|
|
||||||
if (BeepParam->Duration >= 0)
|
if (BeepParam->Duration >= 0)
|
||||||
{
|
{
|
||||||
DueTime.QuadPart = (LONGLONG)BeepParam->Duration * -10000;
|
DueTime.QuadPart = (LONGLONG)BeepParam->Duration * -10000;
|
||||||
|
|
Loading…
Reference in a new issue