diff options
Diffstat (limited to 'g10/ccid-driver.c')
-rw-r--r-- | g10/ccid-driver.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/g10/ccid-driver.c b/g10/ccid-driver.c index 8c362d73c..515b15a6b 100644 --- a/g10/ccid-driver.c +++ b/g10/ccid-driver.c @@ -92,6 +92,7 @@ #include <usb.h> #include "ccid-driver.h" +#include "../include/host2net.h" #define DRVNAME "ccid-driver: " @@ -292,7 +293,7 @@ static int abort_cmd (ccid_driver_t handle, int seqno); static unsigned int convert_le_u32 (const unsigned char *buf) { - return buf[0] | (buf[1] << 8) | (buf[2] << 16) | (buf[3] << 24); + return buf[0] | (buf[1] << 8) | (buf[2] << 16) | ((unsigned int)buf[3] << 24); } |