summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2004-03-30 04:17:14 +0200
committerMatthias Andree <matthias.andree@gmx.de>2004-03-30 04:17:14 +0200
commit83e692e88bf2d01edb089010bdfc07b7dcc78642 (patch)
treebb7b16bc7318720eb72d37b183affd50a919fa2f /lib
parent289e0557c24c68290b6d9b73b09674447801fdac (diff)
downloade2fsprogs-83e692e88bf2d01edb089010bdfc07b7dcc78642.tar.gz
unix_io.c, pass1.c:
int -> unsigned for 1 bit wide bitfields - we cannot have a value and a sign in 1 bit. Fixes some of the Intel C++ 8.0 warnings (-w1 level).
Diffstat (limited to 'lib')
-rw-r--r--lib/ext2fs/unix_io.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ext2fs/unix_io.c b/lib/ext2fs/unix_io.c
index b09e3e35..7df3243f 100644
--- a/lib/ext2fs/unix_io.c
+++ b/lib/ext2fs/unix_io.c
@@ -55,8 +55,8 @@ struct unix_cache {
char *buf;
unsigned long block;
int access_time;
- int dirty:1;
- int in_use:1;
+ unsigned dirty:1;
+ unsigned in_use:1;
};
#define CACHE_SIZE 8