mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
Add missing breaks
Spotted by Maciej Bialas (bjauy at o2.pl) svn path=/trunk/; revision=38589
This commit is contained in:
@@ -222,12 +222,15 @@ SermouseDetectLegacyDevice(
|
||||
case '3':
|
||||
INFO_(SERMOUSE, "Microsoft Mouse with 3-buttons detected\n");
|
||||
MouseType = mtLogitech;
|
||||
break;
|
||||
case 'Z':
|
||||
INFO_(SERMOUSE, "Microsoft Wheel Mouse detected\n");
|
||||
MouseType = mtWheelZ;
|
||||
break;
|
||||
default:
|
||||
INFO_(SERMOUSE, "Microsoft Mouse with 2-buttons detected\n");
|
||||
MouseType = mtMicrosoft;
|
||||
break;
|
||||
}
|
||||
goto ByeBye;
|
||||
}
|
||||
|
||||
@@ -572,6 +572,7 @@ SerenumDetectLegacyDevice(
|
||||
RtlInitUnicodeString(&DeviceDescription, L"Microsoft Mouse with 3-buttons");
|
||||
SerenumInitMultiSzString(&HardwareIds, "*PNP0F08", NULL);
|
||||
SerenumInitMultiSzString(&CompatibleIds, "SERIAL_MOUSE", NULL);
|
||||
break;
|
||||
default:
|
||||
/* Hardware id: *PNP0F01
|
||||
* Compatible id: SERIAL_MOUSE
|
||||
@@ -579,6 +580,7 @@ SerenumDetectLegacyDevice(
|
||||
RtlInitUnicodeString(&DeviceDescription, L"Microsoft Mouse with 2-buttons or Microsoft Wheel Mouse");
|
||||
SerenumInitMultiSzString(&HardwareIds, "*PNP0F01", NULL);
|
||||
SerenumInitMultiSzString(&CompatibleIds, "SERIAL_MOUSE", NULL);
|
||||
break;
|
||||
}
|
||||
Status = ReportDetectedDevice(DeviceObject,
|
||||
&DeviceDescription, &DeviceId, &InstanceId, &HardwareIds, &CompatibleIds);
|
||||
|
||||
Reference in New Issue
Block a user