Skip to content

Commit c022f55

Browse files
iakovQbicz
andcommitted
Remove excess incorrect space
Co-Authored-By: Filip Kubicz <[email protected]>
1 parent e32d3f1 commit c022f55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libusb/hid.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,7 @@ static void read_callback(struct libusb_transfer *transfer)
737737
if (transfer->status == LIBUSB_TRANSFER_COMPLETED) {
738738

739739
struct input_report *rpt = (struct input_report*) malloc(sizeof(*rpt));
740-
rpt->data = (uint8_t *) malloc(transfer->actual_length);
740+
rpt->data = (uint8_t*) malloc(transfer->actual_length);
741741
memcpy(rpt->data, transfer->buffer, transfer->actual_length);
742742
rpt->len = transfer->actual_length;
743743
rpt->next = NULL;

0 commit comments

Comments
 (0)