diff options
author | Rafaël Carré <funman@videolan.org> | 2012-05-07 01:35:57 -0400 |
---|---|---|
committer | Rafaël Carré <funman@videolan.org> | 2012-05-07 01:35:57 -0400 |
commit | c4a51d2d88f3120b5041f8a824a259903f1b78f2 (patch) | |
tree | c981ce2799c23bb099fbdfc650049182e361c321 /firmware/usbstack | |
parent | dd57c01bef9bd24fc8000175f61bf6071901289a (diff) |
missing const
Diffstat (limited to 'firmware/usbstack')
-rw-r--r-- | firmware/usbstack/usb_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/usbstack/usb_core.c b/firmware/usbstack/usb_core.c index eb17073e51..cc26e906e8 100644 --- a/firmware/usbstack/usb_core.c +++ b/firmware/usbstack/usb_core.c @@ -278,7 +278,7 @@ static void usb_core_control_request_handler(struct usb_ctrlrequest* req); static unsigned char response_data[256] USB_DEVBSS_ATTR; -static short hex[16] = {'0', '1', '2', '3', '4', '5', '6', '7', +static const short hex[16] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'}; #ifdef IPOD_ARCH static void set_serial_descriptor(void) |