From e53cddb030774765dec14ab120991fc775bc6959 Mon Sep 17 00:00:00 2001 From: Přemysl Eric Janouch Date: Thu, 26 Dec 2024 12:26:19 +0100 Subject: Fix up code style adjustments --- elksmart-comm.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'elksmart-comm.c') diff --git a/elksmart-comm.c b/elksmart-comm.c index 4d5d830..3aeec34 100644 --- a/elksmart-comm.c +++ b/elksmart-comm.c @@ -196,7 +196,7 @@ compress_value(unsigned value, struct str *encoded) } static void -compress_pulses (const struct pulse *pulses, size_t len, struct str *encoded) +compress_pulses(const struct pulse *pulses, size_t len, struct str *encoded) { unsigned counts[len]; memset(counts, 0, sizeof counts); @@ -527,15 +527,15 @@ send_identify(libusb_device_handle *device, struct error **e) #if 0 // The EKX4S does not respond to this request. static uint8_t c_serial[] = { -5, -5, -5, -5 }; - if ((result = libusb_bulk_transfer (device, g.endpoint_out, + if ((result = libusb_bulk_transfer(device, g.endpoint_out, c_serial, sizeof c_serial, &len, 100))) - return error_set (e, "serial/send: %s", libusb_strerror (result)); - if ((result = libusb_bulk_transfer (device, g.endpoint_in, + return error_set(e, "serial/send: %s", libusb_strerror(result)); + if ((result = libusb_bulk_transfer(device, g.endpoint_in, buffer, sizeof buffer, &len, 100))) - return error_set (e, "serial/recv: %s", libusb_strerror (result)); + return error_set(e, "serial/recv: %s", libusb_strerror(result)); if (len < (int) sizeof c_serial || - memcmp (buffer, c_serial, sizeof c_serial)) - return error_set (e, "serial retrieval failed"); + memcmp(buffer, c_serial, sizeof c_serial)) + return error_set(e, "serial retrieval failed"); #endif return true; } -- cgit v1.2.3-70-g09d2