Fix incorrect string length in the USBtoSerial demo descriptors (thanks to Oliver...
authorDean Camera <dean@fourwalledcubicle.com>
Tue, 28 Aug 2012 20:10:11 +0000 (20:10 +0000)
committerDean Camera <dean@fourwalledcubicle.com>
Tue, 28 Aug 2012 20:10:11 +0000 (20:10 +0000)
Projects/USBtoSerial/Descriptors.c

index 2b4bb4c..1ae11b4 100644 (file)
@@ -203,7 +203,7 @@ const USB_Descriptor_String_t PROGMEM ManufacturerString =
  */
 const USB_Descriptor_String_t PROGMEM ProductString =
 {
-       .Header                 = {.Size = USB_STRING_LEN(23), .Type = DTYPE_String},
+       .Header                 = {.Size = USB_STRING_LEN(22), .Type = DTYPE_String},
 
        .UnicodeString          = L"LUFA USB-RS232 Adapter"
 };