diff options
author | Jiapeng Chong <jiapeng.chong@linux.alibaba.com> | 2021-04-08 16:31:02 +0800 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2021-04-25 16:28:22 -0500 |
commit | 83cd9ed7ae720c216e7b57b607ae26af603594db (patch) | |
tree | dcf46da1a28e046b8a6d00e16cdb2fdd439da619 /fs/cifs/cifsacl.c | |
parent | c45adff786b780b22db03e102f47d5515cf78072 (diff) |
cifs: Remove useless variable
Fix the following gcc warning:
fs/cifs/cifsacl.c:1097:8: warning: variable ‘nmode’ set but not used
[-Wunused-but-set-variable].
Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs/cifs/cifsacl.c')
-rw-r--r-- | fs/cifs/cifsacl.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/cifs/cifsacl.c b/fs/cifs/cifsacl.c index bbc439710c6c..784407f9280f 100644 --- a/fs/cifs/cifsacl.c +++ b/fs/cifs/cifsacl.c @@ -1094,11 +1094,9 @@ static int set_chmod_dacl(struct cifs_acl *pdacl, struct cifs_acl *pndacl, struct cifs_ace *pnntace = NULL; char *nacl_base = NULL; u32 num_aces = 0; - __u64 nmode; bool new_aces_set = false; /* Assuming that pndacl and pnmode are never NULL */ - nmode = *pnmode; nacl_base = (char *)pndacl; nsize = sizeof(struct cifs_acl); |