Fix incorrect const'ness of the ReportItem parameter in USB_SetHIDReportItemInfo().
This commit is contained in:
parent
2919aeeaab
commit
d6e3259f8b
2 changed files with 2 additions and 2 deletions
|
@ -278,7 +278,7 @@
|
|||
* \param[out] ReportData Buffer holding the current OUT or FEATURE report data
|
||||
* \param[in] ReportItem Pointer to the report item of interest in a \ref HID_ReportInfo_t ReportItem array
|
||||
*/
|
||||
void USB_SetHIDReportItemInfo(uint8_t* ReportData, const HID_ReportItem_t* ReportItem)
|
||||
void USB_SetHIDReportItemInfo(uint8_t* ReportData, HID_ReportItem_t* const ReportItem)
|
||||
ATTR_NON_NULL_PTR_ARG(1) ATTR_NON_NULL_PTR_ARG(2);
|
||||
|
||||
/** Retrieves the size of a given HID report in bytes from it's Report ID.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue