We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5183594 + 0aef1d4 commit 48f8bfdCopy full SHA for 48f8bfd
fs/affs/amigaffs.h
@@ -80,7 +80,7 @@ struct affs_head {
80
__be32 spare1;
81
__be32 first_data;
82
__be32 checksum;
83
- __be32 table[1];
+ __be32 table[];
84
};
85
86
struct affs_tail {
@@ -108,7 +108,7 @@ struct slink_front
108
__be32 key;
109
__be32 spare1[3];
110
111
- u8 symname[1]; /* depends on block size */
+ u8 symname[]; /* depends on block size */
112
113
114
struct affs_data_head
@@ -119,7 +119,7 @@ struct affs_data_head
119
__be32 size;
120
__be32 next;
121
122
- u8 data[1]; /* depends on block size */
+ u8 data[]; /* depends on block size */
123
124
125
/* Permission bits */
0 commit comments