diff options
author | matt mooney <mfm@muteddisk.com> | 2011-07-07 00:31:53 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-07-08 14:01:16 -0700 |
commit | fcedd169be21564280f83ef486e403fa34f61a39 (patch) | |
tree | 4dba70aa7716ba414c622fab20a94affd674d9fa | |
parent | dffb9649d392b7fa7971c5fa54a4154cec264809 (diff) | |
download | lwn-fcedd169be21564280f83ef486e403fa34f61a39.tar.gz lwn-fcedd169be21564280f83ef486e403fa34f61a39.zip |
staging: usbip: userspace: usbip_list.c: modify exportable device output
Change spacing to provide better indentation for readability.
Signed-off-by: matt mooney <mfm@muteddisk.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/staging/usbip/userspace/src/usbip_list.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/usbip/userspace/src/usbip_list.c b/drivers/staging/usbip/userspace/src/usbip_list.c index 3edf5d1180dd..63496386ead7 100644 --- a/drivers/staging/usbip/userspace/src/usbip_list.c +++ b/drivers/staging/usbip/userspace/src/usbip_list.c @@ -100,9 +100,9 @@ static int get_exported_devices(char *host, int sockfd) usbip_names_get_class(class_name, sizeof(class_name), udev.bDeviceClass, udev.bDeviceSubClass, udev.bDeviceProtocol); - printf("%8s: %s\n", udev.busid, product_name); - printf("%8s: %s\n", "", udev.path); - printf("%8s: %s\n", "", class_name); + printf("%11s: %s\n", udev.busid, product_name); + printf("%11s: %s\n", "", udev.path); + printf("%11s: %s\n", "", class_name); for (j = 0; j < udev.bNumInterfaces; j++) { rc = usbip_net_recv(sockfd, &uintf, sizeof(uintf)); @@ -118,7 +118,7 @@ static int get_exported_devices(char *host, int sockfd) uintf.bInterfaceClass, uintf.bInterfaceSubClass, uintf.bInterfaceProtocol); - printf("%8s: %2d - %s\n", "", j, class_name); + printf("%11s: %2d - %s\n", "", j, class_name); } printf("\n"); } |