From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751067AbdL3QL6 (ORCPT ); Sat, 30 Dec 2017 11:11:58 -0500 Received: from mail-wm0-f67.google.com ([74.125.82.67]:38119 "EHLO mail-wm0-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750924AbdL3QL4 (ORCPT ); Sat, 30 Dec 2017 11:11:56 -0500 X-Google-Smtp-Source: ACJfBosZMA+5Iun7GjFdRrkEritGiXNd9/Tp8eCBcfn46+QtU/LqgUKewz5Me8T0P8rEWAny/7gbQA== Date: Sat, 30 Dec 2017 18:11:51 +0200 From: Elad Wexler To: valentina.manea.m@gmail.com, shuah@kernel.org Cc: linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] tools: usb: usbip_device_driver: prefer 'unsigned int' to 'unsigned' Message-ID: <20171230161151.GA10527@ewexler> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Fixup a coding style issue Signed-off-by: Elad Wexler --- tools/usb/usbip/libsrc/usbip_device_driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/usb/usbip/libsrc/usbip_device_driver.c b/tools/usb/usbip/libsrc/usbip_device_driver.c index e059b7d..b2dac82 100644 --- a/tools/usb/usbip/libsrc/usbip_device_driver.c +++ b/tools/usb/usbip/libsrc/usbip_device_driver.c @@ -77,7 +77,7 @@ int read_usb_vudc_device(struct udev_device *sdev, struct usbip_usb_device *dev) const char *path, *name; char filepath[SYSFS_PATH_MAX]; struct usb_device_descriptor descr; - unsigned i; + unsigned int i; FILE *fd = NULL; struct udev_device *plat; const char *speed; -- 2.7.4