diff options
| author | Russell King <rmk@flint.arm.linux.org.uk> | 2004-08-26 00:38:53 +0100 |
|---|---|---|
| committer | Russell King <rmk@flint.arm.linux.org.uk> | 2004-08-26 00:38:53 +0100 |
| commit | 45ea384341874ac2cc34cf651db52ad40dff47b4 (patch) | |
| tree | 620f88ba56544765ef88e3d97a3c40287faa4e37 /include/linux | |
| parent | e5ac0190d9fe47cbc9bd18fd1ac576bda6060890 (diff) | |
[ADFS] Fix sparse signed bitfield warning
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/adfs_fs_i.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/adfs_fs_i.h b/include/linux/adfs_fs_i.h index 6341f7059b0b..cb543034e54f 100644 --- a/include/linux/adfs_fs_i.h +++ b/include/linux/adfs_fs_i.h @@ -17,7 +17,7 @@ struct adfs_inode_info { __u32 execaddr; /* RISC OS exec address */ unsigned int filetype; /* RISC OS file type */ unsigned int attr; /* RISC OS permissions */ - int stamped:1; /* RISC OS file has date/time */ + unsigned int stamped:1; /* RISC OS file has date/time */ struct inode vfs_inode; }; |
