From 0cb8719e0d3a5bab54591824271cf3bb87c677e3 Mon Sep 17 00:00:00 2001 From: Andrew Perepechko Date: Mon, 21 Jun 2010 14:23:41 +0400 Subject: [PATCH] b=14929 a tiny fix for mkfs build i=Johann Lombardi i=ZhiYong Tian --- lustre/utils/mkfs_lustre.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lustre/utils/mkfs_lustre.c b/lustre/utils/mkfs_lustre.c index bb37304..6f849a8 100644 --- a/lustre/utils/mkfs_lustre.c +++ b/lustre/utils/mkfs_lustre.c @@ -590,7 +590,7 @@ int make_lustre_backfs(struct mkfs_opts *mop) } block_count = mop->mo_device_sz / (L_BLOCK_SIZE >> 10); /* Create one less block. Bug 22906 */ - block_count = min(block_count, 4294967295); + block_count = min(block_count, 4294967295U); } if ((mop->mo_ldd.ldd_mount_type == LDD_MT_EXT3) || -- 1.8.3.1