Rename function to destroy a list of USB devices

Rename from "usb_device_" to "usb_devices_".

PR #3005 <https://github.com/Genymobile/scrcpy/pull/3005>
pull/3005/head
Romain Vimont 2 years ago
parent 6df2205cf3
commit 0eadf95a3e

@ -442,7 +442,7 @@ scrcpy(struct scrcpy_options *options) {
if (count > 1) {
LOGE("Multiple (%d) devices with serial %s", (int) count, serial);
sc_usb_device_destroy_all(usb_devices, count);
sc_usb_devices_destroy_all(usb_devices, count);
sc_usb_destroy(&s->usb);
sc_acksync_destroy(&s->acksync);
goto aoa_hid_end;

@ -115,7 +115,7 @@ scrcpy_otg(struct scrcpy_options *options) {
if (!serial) {
LOGE("Specify the device via -s or --serial");
}
sc_usb_device_destroy_all(usb_devices, count);
sc_usb_devices_destroy_all(usb_devices, count);
goto end;
}
usb_device_initialized = true;

@ -79,7 +79,7 @@ sc_usb_device_destroy(struct sc_usb_device *usb_device) {
}
void
sc_usb_device_destroy_all(struct sc_usb_device *usb_devices, size_t count) {
sc_usb_devices_destroy_all(struct sc_usb_device *usb_devices, size_t count) {
for (size_t i = 0; i < count; ++i) {
sc_usb_device_destroy(&usb_devices[i]);
}

@ -41,7 +41,7 @@ void
sc_usb_device_destroy(struct sc_usb_device *usb_device);
void
sc_usb_device_destroy_all(struct sc_usb_device *usb_devices, size_t count);
sc_usb_devices_destroy_all(struct sc_usb_device *usb_devices, size_t count);
bool
sc_usb_init(struct sc_usb *usb);

Loading…
Cancel
Save