Fix warning message

Make the message consistent for HID keyboard and HID mouse.
This commit is contained in:
Romain Vimont 2022-01-23 16:07:15 +01:00
parent ac038f276e
commit 8c7f0ed5ea

View file

@ -262,6 +262,6 @@ void
sc_hid_mouse_destroy(struct sc_hid_mouse *mouse) {
bool ok = sc_aoa_unregister_hid(mouse->aoa, HID_MOUSE_ACCESSORY_ID);
if (!ok) {
LOGW("Could not unregister HID");
LOGW("Could not unregister HID mouse");
}
}