From b453e1b87bee811b09e13e82c9461b612012c8bb Mon Sep 17 00:00:00 2001 From: Lars Op den Kamp Date: Fri, 20 Apr 2012 11:53:52 +0200 Subject: [PATCH] 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 --- include/cectypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.34.1