forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-05-13 9d77db3c730780c8ef5ccd4b66403ff5675cfe4e
kernel/fs/isofs/rock.h
....@@ -22,7 +22,7 @@
2222 __u8 len_des;
2323 __u8 len_src;
2424 __u8 ext_ver;
25
- __u8 data[0];
25
+ __u8 data[];
2626 } __attribute__ ((packed));
2727
2828 struct RR_RR_s {
....@@ -44,7 +44,7 @@
4444 struct SL_component {
4545 __u8 flags;
4646 __u8 len;
47
- __u8 text[0];
47
+ __u8 text[];
4848 } __attribute__ ((packed));
4949
5050 struct RR_SL_s {
....@@ -54,7 +54,7 @@
5454
5555 struct RR_NM_s {
5656 __u8 flags;
57
- char name[0];
57
+ char name[];
5858 } __attribute__ ((packed));
5959
6060 struct RR_CL_s {
....@@ -71,7 +71,7 @@
7171
7272 struct RR_TF_s {
7373 __u8 flags;
74
- struct stamp times[0]; /* Variable number of these beasts */
74
+ struct stamp times[]; /* Variable number of these beasts */
7575 } __attribute__ ((packed));
7676
7777 /* Linux-specific extension for transparent decompression */