Skip to content

Commit

Permalink
fix no_usb.c
Browse files Browse the repository at this point in the history
  • Loading branch information
petabyt committed Oct 4, 2023
1 parent f35a90c commit 32ea3e6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/no_usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ int ptp_device_reset(struct PtpRuntime *r) {
return -1;
}

int ptp_cmd_write(void *to, int length) {
int ptp_cmd_write(struct PtpRuntime *r, void *to, int length) {
return -1;
}

int ptp_cmd_read(void *to, int length) {
int ptp_cmd_read(struct PtpRuntime *r, void *to, int length) {
return -1;
}

int ptp_read_int(void *to, int length) {
int ptp_read_int(struct PtpRuntime *r, void *to, int length) {
return -1;
}

Expand Down

0 comments on commit 32ea3e6

Please sign in to comment.