Samples: Fix initialization discards qualifiers warnings in xusb.c

xusb.c: In function ‘read_ms_winsub_feature_descriptors’:
xusb.c:542: warning: initialization discards qualifiers from pointer target type
xusb.c:543: warning: initialization discards qualifiers from pointer target type
xusb.c: In function ‘test_device’:
xusb.c:598: warning: initialization discards qualifiers from pointer target type
xusb.c:598: warning: initialization discards qualifiers from pointer target type
xusb.c:598: warning: initialization discards qualifiers from pointer target type
xusb.c:599: warning: initialization discards qualifiers from pointer target type
xusb.c:599: warning: initialization discards qualifiers from pointer target type
This commit is contained in:
Ludovic Rousseau
2012-04-14 09:27:24 +02:00
committed by Pete Batard
parent baa5563627
commit 28ab85c418
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -534,7 +534,7 @@ static void read_ms_winsub_feature_descriptors(libusb_device_handle *handle, uin
uint32_t length;
void* le_type_punning_IS_fine;
struct {
char* desc;
const char* desc;
uint8_t recipient;
uint16_t index;
uint16_t header_size;
@@ -595,7 +595,7 @@ static int test_device(uint16_t vid, uint16_t pid)
int iface_detached = -1;
#endif
struct libusb_device_descriptor dev_desc;
char* speed_name[5] = { "Unknown", "1.5 Mbit/s (USB 1.0 LowSpeed)", "12 Mbit/s (USB 1.0 FullSpeed)",
const char* speed_name[5] = { "Unknown", "1.5 Mbit/s (USB 1.0 LowSpeed)", "12 Mbit/s (USB 1.0 FullSpeed)",
"480 Mbit/s (USB 2.0 HighSpeed)", "5000 Mbit/s (USB 3.0 SuperSpeed)"};
char string[128];
uint8_t string_index[3]; // indexes of the string descriptors
+1 -1
View File
@@ -9,7 +9,7 @@
#define LIBUSB_MICRO 10
#endif
#ifndef LIBUSB_NANO
#define LIBUSB_NANO 10474
#define LIBUSB_NANO 10475
#endif
/* LIBUSB_RC is the release candidate suffix. Should normally be empty. */
#ifndef LIBUSB_RC