Remove excess incorrect space

Co-Authored-By: Filip Kubicz <Qbicz@users.noreply.github.com>
This commit is contained in:
iakov
2019-06-19 13:19:13 +03:00
committed by Filip Kubicz
parent e32d3f1266
commit c022f55080

View File

@@ -737,7 +737,7 @@ static void read_callback(struct libusb_transfer *transfer)
if (transfer->status == LIBUSB_TRANSFER_COMPLETED) {
struct input_report *rpt = (struct input_report*) malloc(sizeof(*rpt));
rpt->data = (uint8_t *) malloc(transfer->actual_length);
rpt->data = (uint8_t*) malloc(transfer->actual_length);
memcpy(rpt->data, transfer->buffer, transfer->actual_length);
rpt->len = transfer->actual_length;
rpt->next = NULL;