fs: fat: use ATTR_ARCH instead of anonymous 0x20
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Sun, 22 Nov 2020 10:13:33 +0000 (11:13 +0100)
committerHeinrich Schuchardt <xypron.glpk@gmx.de>
Sun, 29 Nov 2020 04:18:16 +0000 (05:18 +0100)
Using constants instead of anonymous numbers increases code readability.

Fixes: 704df6aa0a28 ("fs: fat: refactor write interface for a file offset")
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
fs/fat/fat_write.c

index fc932df..7afc838 100644 (file)
@@ -1191,7 +1191,8 @@ int file_fat_write_at(const char *filename, loff_t pos, void *buffer,
                }
 
                /* Set short name entry */
-               fill_dentry(itr->fsdata, itr->dent, filename, 0, size, 0x20);
+               fill_dentry(itr->fsdata, itr->dent, filename, 0, size,
+                           ATTR_ARCH);
 
                retdent = itr->dent;
        }