From 32ea3e64e4174b59cb0a2d7c1a563e66ec91f1e5 Mon Sep 17 00:00:00 2001 From: Daniel C Date: Tue, 3 Oct 2023 21:03:33 -0400 Subject: [PATCH] fix no_usb.c --- src/no_usb.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/no_usb.c b/src/no_usb.c index 048c20f..d131047 100644 --- a/src/no_usb.c +++ b/src/no_usb.c @@ -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; }