Linus Torvalds writes: (Summary) 2 +-
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/fs/nfs/nfs4state.c b/fs/nfs/nfs4state.c
index 54fd56d715a8..9db5d0d57fcb 100644
--- a/fs/nfs/nfs4state.c
+++ b/fs/nfs/nfs4state.c
@@ -71,8 +71,7 @@ const nfs4_stateid zero_stateid = {
};
const nfs4_stateid invalid_stateid = {
{
- .seqid = cpu_to_be32(0xffffffffU),
- .other = { 0 },
+ { .seqid = cpu_to_be32(0xffffffffU), .other = { 0 }, },
},
.type = NFS4_INVALID_STATEID_TYPE,
};
struct nfs4_stateid_struct {
union {
- char data[NFS4_STATEID_SIZE];
↧