File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 7070
7171/** @brief Content of the logging message. */
7272struct log_multidomain_log_msg {
73- uint8_t data [ 0 ] ;
73+ FLEXIBLE_ARRAY_DECLARE ( uint8_t , data ) ;
7474} __packed ;
7575
7676/** @brief Content of the domain count message. */
@@ -87,14 +87,14 @@ struct log_multidomain_source_cnt {
8787/** @brief Content of the domain name message. */
8888struct log_multidomain_domain_name {
8989 uint8_t domain_id ;
90- char name [0 ];
90+ char name [];
9191} __packed ;
9292
9393/** @brief Content of the source name message. */
9494struct log_multidomain_source_name {
9595 uint8_t domain_id ;
9696 uint16_t source_id ;
97- char name [0 ];
97+ char name [];
9898} __packed ;
9999
100100/** @brief Content of the message for getting logging levels. */
You can’t perform that action at this time.
0 commit comments