Skip to content

Commit

Permalink
Fix typos in libwpd.c
Browse files Browse the repository at this point in the history
  • Loading branch information
petabyt committed Oct 11, 2023
1 parent 225f7b0 commit 9d9971a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libwpd.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ int ptp_comm_init(struct PtpRuntime *r) {
}

int ptp_device_init(struct PtpRuntime *r) {
ptp_comm_init();
ptp_comm_init(r);

int length = 0;
wchar_t **devices = wpd_get_devices(&backend_wpd, &length);
Expand Down Expand Up @@ -138,7 +138,7 @@ int ptp_receive_bulk_packets(struct PtpRuntime *r) {
return 0;
}

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

Expand Down

0 comments on commit 9d9971a

Please sign in to comment.