Remove tag at struct

This commit is contained in:
shakemid 2017-09-15 17:20:07 +09:00
parent 8d8d968cf7
commit a41e363d8c

View file

@ -45,7 +45,7 @@
/* TEMPer type definition */
typedef struct temper_type {
typedef struct {
const int vendor_id;
const int product_id;
const char product_name[256];
@ -55,7 +55,7 @@ typedef struct temper_type {
void (*decode_func)();
} temper_type_t;
typedef struct temper_device {
typedef struct {
libusb_device_handle *handle;
temper_type_t *type;
} temper_device_t;