diff --git a/ChangeLog b/ChangeLog index ac826857..b555d636 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2011-08-26 Joerg Wunsch + + Reported by Jason Hecker: + * usbasp.c (libusb_to_errno): Conditionalize some error codes + that apparently are lacking on MinGW. + 2011-08-25 Joerg Wunsch Fix warnings. diff --git a/usbasp.c b/usbasp.c index a3f0ea37..e85d0a9f 100644 --- a/usbasp.c +++ b/usbasp.c @@ -77,10 +77,14 @@ static int libusb_to_errno(int result) return ENOENT; case LIBUSB_ERROR_BUSY: return EBUSY; +#ifdef ETIMEDOUT case LIBUSB_ERROR_TIMEOUT: return ETIMEDOUT; +#endif +#ifdef EOVERFLOW case LIBUSB_ERROR_OVERFLOW: return EOVERFLOW; +#endif case LIBUSB_ERROR_PIPE: return EPIPE; case LIBUSB_ERROR_INTERRUPTED: