Update hid_mouse_absolute.go

Attempt to fix line reported as improperly formatted by lint.
This commit is contained in:
rmschooley 2025-05-17 20:42:23 -05:00 committed by GitHub
parent 4c0bc7e6db
commit f085e5e501
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ func (u *UsbGadget) AbsMouseWheelReport(wheelY int8) error {
}
err := u.absMouseWriteHidFile([]byte{
2, // Report ID 2
2, // Report ID 2
byte(wheelY), // Wheel Y (signed)
})