diff options
author | Hans Petter Selasky <hselasky@FreeBSD.org> | 2010-10-14 20:18:39 +0000 |
---|---|---|
committer | Hans Petter Selasky <hselasky@FreeBSD.org> | 2010-10-14 20:18:39 +0000 |
commit | a1221549012ec947ce4b2a1fa8439e35bdbdeca0 (patch) | |
tree | 2392c95ac8a45e0f0346c99b9b61a613372370d0 | |
parent | f1b5fa6e496ae0eb2a3a60ecd613ff92d432e5b9 (diff) | |
download | src-a1221549012ec947ce4b2a1fa8439e35bdbdeca0.tar.gz src-a1221549012ec947ce4b2a1fa8439e35bdbdeca0.zip |
- Fix some compile warnings regarding comparing signed to unsigned.
Approved by: thompsa (mentor)
Notes
Notes:
svn path=/head/; revision=213849
-rw-r--r-- | lib/libusb/libusb10_io.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libusb/libusb10_io.c b/lib/libusb/libusb10_io.c index 1f0d0ba6c69c..48405c9f2379 100644 --- a/lib/libusb/libusb10_io.c +++ b/lib/libusb/libusb10_io.c @@ -141,7 +141,7 @@ libusb10_handle_events_sub(struct libusb_context *ctx, struct timeval *tv) err = LIBUSB_ERROR_IO; if (err < 1) { - for (i = 0; i != nfds; i++) { + for (i = 0; i != (int)nfds; i++) { if (ppdev[i] != NULL) { CTX_UNLOCK(ctx); libusb_unref_device(libusb_get_device(ppdev[i])); @@ -150,7 +150,7 @@ libusb10_handle_events_sub(struct libusb_context *ctx, struct timeval *tv) } goto do_done; } - for (i = 0; i != nfds; i++) { + for (i = 0; i != (int)nfds; i++) { if (ppdev[i] != NULL) { dev = libusb_get_device(ppdev[i]); |