diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-29 23:15:04 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-29 23:15:04 +0000 |
commit | 28bb84bd4e21008dff4c71db0bddc6ea73d0e6e8 (patch) | |
tree | f651f21e12cbf2b4874660de7f6f04f4f71db891 | |
parent | 016a82e279f135e9c385f0d2a73eafcc63bed5c3 (diff) | |
download | busybox-w32-28bb84bd4e21008dff4c71db0bddc6ea73d0e6e8.tar.gz busybox-w32-28bb84bd4e21008dff4c71db0bddc6ea73d0e6e8.tar.bz2 busybox-w32-28bb84bd4e21008dff4c71db0bddc6ea73d0e6e8.zip |
Well, I am not 100.00% usre that uint16 will suffice there.
We don't lose anything by using 'unsigned' instead.
-rw-r--r-- | util-linux/mkfs_minix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util-linux/mkfs_minix.c b/util-linux/mkfs_minix.c index 981c2f913..f0b658d0e 100644 --- a/util-linux/mkfs_minix.c +++ b/util-linux/mkfs_minix.c | |||
@@ -505,8 +505,8 @@ static void setup_tables(void) | |||
505 | { | 505 | { |
506 | unsigned long inodes; | 506 | unsigned long inodes; |
507 | unsigned norm_firstzone; | 507 | unsigned norm_firstzone; |
508 | uint16_t sb_zmaps; | 508 | unsigned sb_zmaps; |
509 | int i; | 509 | unsigned i; |
510 | 510 | ||
511 | memset(super_block_buffer, 0, BLOCK_SIZE); | 511 | memset(super_block_buffer, 0, BLOCK_SIZE); |
512 | memset(boot_block_buffer, 0, 512); | 512 | memset(boot_block_buffer, 0, 512); |