diff options
| author | Marcel Holtmann <marcel@holtmann.org> | 2009-01-29 17:58:28 +0100 | 
|---|---|---|
| committer | Marcel Holtmann <marcel@holtmann.org> | 2009-01-29 17:58:28 +0100 | 
| commit | 9c0b5859e6cc4b7a0e925fde8665990281b265d3 (patch) | |
| tree | 8994dbe0942d56c9a7cf470fc3b2316d1f91e0a3 /tools/dfubabel.c | |
| parent | 1ce81e1e0794a5d619016e17b33b533b614fc6a9 (diff) | |
Fix mostly every warning caused by -Wsign-compare
Diffstat (limited to 'tools/dfubabel.c')
| -rw-r--r-- | tools/dfubabel.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/tools/dfubabel.c b/tools/dfubabel.c index 9778502e..498a717a 100644 --- a/tools/dfubabel.c +++ b/tools/dfubabel.c @@ -115,7 +115,7 @@ static int find_devices(struct device_info *devinfo, size_t size)  	struct usb_bus *bus;  	struct usb_device *dev;  	struct device_id *id; -	int count = 0; +	unsigned int count = 0;  	usb_find_busses();  	usb_find_devices(); | 
