From 7a450041bfbb8b99f70f7bf15a90c4bab9dda7a4 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Tue, 25 Jan 2022 16:39:46 +0100 Subject: [PATCH] cosmetic: Fix indent of printf() statement Change-Id: I9f5c9f7720b3bc3c8d5df9750b031d8bcf2dd435 --- host/src/simtrace2-sniff.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/host/src/simtrace2-sniff.c b/host/src/simtrace2-sniff.c index c2230081..8504e8bf 100644 --- a/host/src/simtrace2-sniff.c +++ b/host/src/simtrace2-sniff.c @@ -442,9 +442,9 @@ int main(int argc, char **argv) } struct usb_interface_match ifm_selected = ifm_filtered[0]; printf("Using USB device %04x:%04x Addr=%u, Path=%s, Cfg=%u, Intf=%u, Alt=%u: %d/%d/%d ", - ifm_selected.vendor, ifm_selected.product, ifm_selected.addr, ifm_selected.path, - ifm_selected.configuration, ifm_selected.interface, ifm_selected.altsetting, - ifm_selected.class, ifm_selected.sub_class, ifm_selected.protocol); + ifm_selected.vendor, ifm_selected.product, ifm_selected.addr, ifm_selected.path, + ifm_selected.configuration, ifm_selected.interface, ifm_selected.altsetting, + ifm_selected.class, ifm_selected.sub_class, ifm_selected.protocol); libusb_device_handle *dev_handle; rc = libusb_open(ifm_selected.usb_dev, &dev_handle); if (rc < 0) {