[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:
Emanuele Aliberti 2005-07-29 09:25:26 +00:00
parent ddb24faedc
commit 3bf350101f

View file

@ -177,9 +177,8 @@ BeepDeviceControl(PDEVICE_OBJECT DeviceObject,
/* do the beep!! */
DPRINT("Beep:\n Freq: %lu Hz\n Dur: %lu ms\n",
pbsp->Frequency,
pbsp->Duration);
BeepParam->Frequency,
BeepParam->Duration);
if (BeepParam->Duration >= 0)
{
DueTime.QuadPart = (LONGLONG)BeepParam->Duration * -10000;