From: Lars Op den Kamp Date: Fri, 20 Apr 2012 09:53:52 +0000 (+0200) Subject: cec: cec_menu_language is 4 chars wide on the interface, but should have been 3.... X-Git-Tag: upstream/2.2.0~1^2~29^2~1 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=b453e1b87bee811b09e13e82c9461b612012c8bb;p=deb_libcec.git cec: cec_menu_language is 4 chars wide on the interface, but should have been 3. changing it now will break backwards compat, so added to the @bug list --- diff --git a/include/cectypes.h b/include/cectypes.h index 95ab891..4edf4ba 100644 --- a/include/cectypes.h +++ b/include/cectypes.h @@ -646,7 +646,7 @@ typedef enum cec_vendor_id typedef struct cec_menu_language { - char language[4]; /**< the iso language code */ + char language[4]; /**< the iso language code. @bug the language code is only 3 chars long, not 4. will be changed in v2.0, because changing it now would break backwards compat */ cec_logical_address device; /**< the logical address of the device */ } cec_menu_language;