We should only use C99 types when available. This could fix a compilation issue reported at http://www.libnfc.org/community/post/770

This commit is contained in:
Romuald Conty 2010-02-09 15:50:52 +00:00
parent d0610be25c
commit e2e6c6cacc

View file

@ -30,8 +30,8 @@ typedef struct {
} usb_spec_t;
typedef struct {
u_int16_t idVendor;
u_int16_t idProduct;
uint16_t idVendor;
uint16_t idProduct;
} usb_candidate_t;
nfc_device_t* pn53x_usb_connect(const nfc_device_desc_t* pndd,const char * target_name, int target_chip);