- Fix some compile warnings regarding comparing signed to unsigned.

Approved by:    thompsa (mentor)
This commit is contained in:
Hans Petter Selasky 2010-10-14 20:18:39 +00:00
parent f1b5fa6e49
commit a122154901
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=213849

View File

@ -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]);