svn commit: trunk/busybox/util-linux
vda at busybox.net
vda at busybox.net
Wed Nov 29 23:15:04 UTC 2006
Author: vda
Date: 2006-11-29 15:15:04 -0800 (Wed, 29 Nov 2006)
New Revision: 16736
Log:
Well, I am not 100.00% usre that uint16 will suffice there.
We don't lose anything by using 'unsigned' instead.
Modified:
trunk/busybox/util-linux/mkfs_minix.c
Changeset:
Modified: trunk/busybox/util-linux/mkfs_minix.c
===================================================================
--- trunk/busybox/util-linux/mkfs_minix.c 2006-11-29 22:47:42 UTC (rev 16735)
+++ trunk/busybox/util-linux/mkfs_minix.c 2006-11-29 23:15:04 UTC (rev 16736)
@@ -505,8 +505,8 @@
{
unsigned long inodes;
unsigned norm_firstzone;
- uint16_t sb_zmaps;
- int i;
+ unsigned sb_zmaps;
+ unsigned i;
memset(super_block_buffer, 0, BLOCK_SIZE);
memset(boot_block_buffer, 0, 512);
More information about the busybox-cvs
mailing list