From a41e363d8c175c952644b61d4ebc9023943414d6 Mon Sep 17 00:00:00 2001 From: shakemid Date: Fri, 15 Sep 2017 17:20:07 +0900 Subject: [PATCH] Remove tag at struct --- pcsensor.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pcsensor.c b/pcsensor.c index 9999e1b..232d90b 100644 --- a/pcsensor.c +++ b/pcsensor.c @@ -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;